- To: slug <slug@xxxxxxxxxxx>
- Subject: Re: [SLUG] batch image resizing & making thumbnails
- From: David Fitch <davidf@xxxxxxxxxxxxxx>
- Date: Sat Mar 29 11:09:02 2003
On Fri, 2003-03-28 at 23:07, Jon wrote:
> Can anyone recommend something that will resize all the images in a
> directory in one go? It has to be from the command line. Also I would like
> something that can make thumbnails, and a simple HTML page which shows the
> thumbnails and has links to the originals.
igal for everything except the resizing.
it uses the imagemagick stuff to do the work.
But wrap it in a script. I do the same thing except
to remove the EXIF crap from the image to make it
smaller so it loads faster on web browsers:
for f in *.jpg ; do
convert +profile APP1 $f $f
done
igal -r -n -a -xy 140
Dave.