Friday, April 8, 2011

Creating thumbnails on a fly using ImageMagick

To create thumbnails for all the JPG files in the current directory

for img in *.jpg; do convert -resize 200 "$img" thumb_"$img";done

No comments:

Post a Comment