[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Syntax for resizing photos
- Subject: [ale] Syntax for resizing photos
- From: cfowler at outpostsentinel.com (Christopher Fowler)
- Date: Sun Jan 9 17:46:29 2005
- In-reply-to: <1105309966.1193.13.camel@localhost>
- References: <1105309966.1193.13.camel@localhost>
mkdir smaller
for i in *.jpg
do
convert -resize 640x480 ${i} smaller/${i}
done
On Sun, 2005-01-09 at 17:32, Trey Sizemore wrote:
> Would someone help with the correct syntax for resizing some JPEG
> images? I have a folder with a number of large images that I would like
> to resize to 640x480 and place in a subfolder of this folder
> called /Smaller. I keep bunging it with convert and mogrify.