Tag Archives: convert

Batch Resize Pictures Using Linux Convert Utility

A quick and simple way to resize a folder full of pictures is to issue the following command on a Linux computer: $ for file in *.jpg; do convert $file -resize 25% rz-$file; done

Posted in How-To | Tagged , , , , , | 2 Comments

Convert PDF to PNG using Linux

If you use the defaults for Imagemagick, the output of a PDF file with text converted to PNG is unreadable.  The secret is to use the density option: $ convert -density 300 xxxxx.pdf yyyyy.png If the original PDF has a … Continue reading

Posted in How-To, Technology | Tagged , , , , | Leave a comment