Batch Resize Image
Tagged with: command, convert, image, imagemagik, Linux, magik, picture, resize
Friday, October 31st, 2008 11:28 PM
Resize all JPG Files to 800×600
convert -sample 800x600 *.jpg output_file_name
Resize all JPG Files to 800×600
convert -sample 800x600 *.jpg output_file_name
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/{}" \;