On Tue, Aug 26, 2003 at 10:08:09AM +1000, John Clarke wrote:
> On Mon, Aug 25, 2003 at 10:46:11AM +0000, Voytek Eymont wrote:
> > 
> > what's a good simple graphic tool for basics stuff such as resizing,
> > croping etc ?
> 
> convert, part of ImagMagick.

convert with perl or shell scripting

e.g.

mkdir thumbnails
for i in *.jpg;do echo $i;convert -filter cubic -geometry 160x160 $i thumbnails/$i;done

convert does just about everything gimp does.  The man page is 1716 lines long (debian 
potato).

cheers,
Woody

-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug

Reply via email to