ImageMagick convert from pdf to jpg
To convert all pdfs into a jpgs with fairly good resolution (Linux, bash):
for i in *.pdf ; do convert -density 300 "$i" "${i%%.*}.jpg" ; done
Without the -density parameter, the result is pretty lousy.
To convert all pdfs into a jpgs with fairly good resolution (Linux, bash):
for i in *.pdf ; do convert -density 300 "$i" "${i%%.*}.jpg" ; done
Without the -density parameter, the result is pretty lousy.