Revision: 14995
Updated Code
at January 8, 2010 11:00 by ping_ch
Updated Code
for I in *.jpg; do convert "$I" -resize 250x250 "thumb.$I"; done
Revision: 14994
Updated Code
at October 20, 2009 04:31 by ping_ch
Updated Code
for I in *.jpg; do convert $I -resize 250x250 thumb.$I; done
Revision: 14993
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at June 19, 2009 10:51 by ping_ch
Initial Code
ls *.jpg | xargs -I {} convert -quality 85 -thumbnail 250 {} thumb.{}
Initial URL
batch-resize-images-with-imagemagick
Initial Description
A simple one-liner to resize images from commandline
Initial Title
Batch Resize Images With Imagemagick
Initial Tags
resize, Bash, images, convert
Initial Language
Bash