Re: [Gimp-user] Scripting for resize

2003-07-16 Thread Sven Neumann
Hi,

Paulo J Matos [EMAIL PROTECTED] writes:

I'm just new to script-fu and gimp. I was not aware scheme is used for
scripting in gimp. I loved that. :D Anyway, I've read the script-fu
part of the gimp manual. I have a directory tree with about 1000
images and I'd like to resize them all to 20x20. Is there any script
for doing that?

 for i in '*.png'; do convert -sample 20x20 $i  small-$i; done

Not a GIMP script but probably a lot better suited for this job.


Sven
___
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Scripting for resize

2003-07-16 Thread pcg
On Wed, Jul 16, 2003 at 06:14:53PM +0200, Sven Neumann [EMAIL PROTECTED] wrote:
 I'm just new to script-fu and gimp. I was not aware scheme is used for
 scripting in gimp. I loved that. :D Anyway, I've read the script-fu
 part of the gimp manual. I have a directory tree with about 1000
 
  for i in '*.png'; do convert -sample 20x20 $i  small-$i; done

Sticking a ! at the end of the 20x20 will actually do the job.

-- 
  -==- |
  ==-- _   |
  ---==---(_)__  __   __   Marc Lehmann  +--
  --==---/ / _ \/ // /\ \/ /   [EMAIL PROTECTED]  |e|
  -=/_/_//_/\_,_/ /_/\_\   XX11-RIPE --+
The choice of a GNU generation   |
 |
___
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user