can I convert pdf to jpg

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
manit
Posts: 123
Joined: 2009-01-30T22:31:26-07:00

can I convert pdf to jpg

Post by manit »

i I am using windows version of imagemagick-6.4.I have extracted contents of zip file to a folder & gave the command.

"D:\sumeet\software dvd\ImageMagick-6.4.8-9\convert.exe" 1.pdf 1.jpg

The OUTPUT was
convert.exe: `%s': %s "gswin32c.exe" -q -dQUIET -dPARANOIDSAFER -dBATCH -dNOPAUS
E -dNOPROMPT -dMaxBitmap=500000000 -dEPSCrop -dAlignToPixels=0 -dGridFitTT=0 "-s
DEVICE=pnmraw" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72" "-sOutputFile=
C:/Users/Guest1/AppData/Local/Temp/magick-VC78S86N" "-fC:/Users/Guest1/AppData/L
ocal/Temp/magick-G6IXBoHg" "-fC:/Users/Guest1/AppData/Local/Temp/magick-BG9pyk67
" @ utility.c/SystemCommand/1829.
convert.exe: Postscript delegate failed `d:\1.pdf': No such file or directory @
pdf.c/ReadPDFImage/612.
convert.exe: missing an image filename `d:\1.jpg' @ convert.c/ConvertImageComman
d/2766.

Actually 1.pdf is kept in d drive.
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: can I convert pdf to jpg

Post by fmw42 »

if you installed from source, then you probably need to install any and all delegate libraries for image formats you want to use.

type

convert -list configure

look at the line DELEGATES and see what is installed. You probably need Ghostscript (gs) delegate

see http://www.imagemagick.org/download/delegates/
Post Reply