Return to Snippet

Revision: 13431
at April 23, 2009 15:24 by zachharkey


Updated Code
# Resize all jpg images in current directory and save to a subdirectory named '120' (e.g. ./120/foo.jpg)

mogrify -resize 120 -path ./120 -monitor ./*.jpg

Revision: 13430
at April 23, 2009 15:19 by zachharkey


Initial Code
# Resize all jpg images in current directory and save to a subdirectory named '120' (e.g. ./120/foo.jpg)
mogrify -resize foo -path ./120 -monitor ./*.jpg

Initial URL


Initial Description


Initial Title
Resize images from the command line

Initial Tags
textmate, images

Initial Language
Bash