Tip #627 Convert pdf to jpg
This command will convert all .pdf files in a directory into a 800px (wide or height, whichever is smaller) image (with the aspect ratio kept) .jpg.for file in `ls *.pdf`; do convert -verbose -colorspace RGB -resize 800 -interlace none \ -density 300 -quality 80 $file `echo $file | sed 's/\.pdf$/\.jpg/'`; done
If the file is named 'example1.pdf' it will be named 'example1.jpg' when it is complete.
- TAGS:
alias aptitude at awk bash bc cal cat cd colrm comm cp csh curl cut date dd df dialog diff dirname dpkg du fc find fuser grep gs gzip history iconv kill ksh last less ln ls lsof lynx m4 md5sum mkdir mkfifo mkisofs mv mysql nc netstat openssl OSX perl ping popd ps pushd python read redirection rm scp screen sed sort ssh stat sudo svn tail tar tee test top tr uniq vim wc wget xargs