Re: JPEG compression

"Vimal Joseph" <[email protected]> Thu, 13 Apr 2006 00:39:22 +0530
Newsgroups gmane.org.region.india.fsug-kochi
Message-ID <[email protected]>
On 4/8/06, Githin Alapatt <[email protected]> wrote:
> I want to compress lots of high quality photos to smaller JPEG ones.
> Which is the best image compression tool in CONSOLE mode which I can
> use. I have a celron processor on my laptop and dont want to waste
> lots of time doing this.

try this

for i in *.jpg
do
convert -geometry "1024x768" -normalize -quality 100 -verbose 
-comment "hi this is my pics..." $i small-images-folder/$i
done

~vimal