I am trying to create thumbnail views of the front pages of some multi page PDFs. If I take a single PDF file and use this:
Code: Select all
convert source.pdf -scale 142 dest.jpg
Code: Select all
convert source.pdf[0] -scale 142 dest.jpg
If it helps, I have ghostscript installed correctly and am using the -dUseCIEColor fix to correct the CMYK to RGB conversion (without this, they all come out very wrong indeed..). I have used imagemagick and gs successfully together on other projects, so I'm pretty sure there are no installation or configuration issues... I hope!
Thanks in advance.