snippets / Images resizing with shell and imagemagick

Language: Shell - First posted by comete on 2007-09-17 16:56 (9 months, 3 weeks)
Link to the snippet: http://www.friendsnippets.org/snippet/13/

Resize a lot of images with shell and imagemagick

1 for i in *.jpg
2 do convert $i -scale 1024x760 resized-$i;
3 done
In order to post a comment, you should have a friendsnippet account. Please sign-in.

1 comments

  • September 18th 2007 at 15:52

    interresting. Why not using Pil to do it ?

Sep '07
  • Resize a lot of images with shell and imagemagick

Oct '07
Feb '08