[SLUG] simple graphic utility ?

2003-08-25 Thread Voytek Eymont
what's a good simple graphic tool for basics stuff such as resizing,
croping etc ?

Voytek Eymont

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


Re: [SLUG] simple graphic utility ?

2003-08-25 Thread Gonzalo Servat
On 25/08/2003 10:46 AM +, Voytek Eymont wrote:

what's a good simple graphic tool for basics stuff such as resizing,
croping etc ?
GIMP

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


Re: [SLUG] simple graphic utility ?

2003-08-26 Thread John Clarke
On Mon, Aug 25, 2003 at 10:46:11AM +, Voytek Eymont wrote:
> 
> what's a good simple graphic tool for basics stuff such as resizing,
> croping etc ?

convert, part of ImagMagick.


Cheers,

John
-- 
whois [EMAIL PROTECTED]
GPG key id: 0xD59C360F
http://kirriwa.net/john/
-- 
SLUG - Sydney Linux User's Group - http://slug.org.au/
More Info: http://lists.slug.org.au/listinfo/slug


Re: [SLUG] simple graphic utility ?

2003-08-26 Thread Anthony Wood
On Tue, Aug 26, 2003 at 10:08:09AM +1000, John Clarke wrote:
> On Mon, Aug 25, 2003 at 10:46:11AM +, 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