ImageMagick help

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Bart Garst
Date:  
Subject: ImageMagick help
How about a temp file?

for i in `/bin/ls *.jpg`
do
    convert -size 640x480 $i -resize 640x480 tmp.jpg
    mv tmp.jpg $i
done


May not be the slickest solution but it should work.

Bart


>>>

I'm trying to setup a script that resizes images. It's for a
non-computer savvy type of person. The goal is that they:

1. Insert the memory card from their camera in the reader
2. Click a button that removes the files from the card and places them
on the hard drive
3. Resizes the images and places those in a different location for
e-mail purposes.

I need the original filename to be exactly the same as the converted
filename. The only variable I've been able to find is %nnd where nn is
number of decimal places and d is the count of the images.

convert -size 640x480 *.jpg -resize 640x480 output\%02d.jpg

renames all files to 00.jpg; 01.jpg, 02.jpg, etc...

Google hasn't produced the variable either nor has the imagemagick site.
Any help appreciated.


---------------------------------------------------
PLUG-discuss mailing list -
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss