Tag Archives: resize

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