Batch Resize Images with ImageMagick

Batch resize files in the current directory and send them to a thumbnails directory (requires convert from Imagemagick)


find . -maxdepth 1 -name *.jpg -print -exec convert "{}" -resize 80x60 "thumbs/{}" \;
Author: Binny V A
A philosopher programmer who specializes in backend development and stoicism.

Leave a Reply

Your email address will not be published. Required fields are marked *