Re: [Gimp-user] working with 40 count images all at once

2001-06-02 Thread Jesse Pavel


Hi Dave,

If you have ImageMagick installed, you can just use a little shell
script:

#!/bin/bash

IMAGEFILES=$(ls *.jpg)  # Or whatever your files are named

for x in $IMAGEFILES; do
convert $x -geometry 200% larger-$x
done


This will make 40 new files with "large-" prepended to the original names.

 - Jesse


> 
> Dave Morse wrote:
> 
> > I'm working on 40 small images.  I'd like to double them all in size,
> > using Image>Scale Image ... Ratio X := 2.0, Ratio Y := 2.0.  Is there any
> > crafty way to work on all the images at once?  I'm no stranger to scheme,
> > btw...
> > 
> > PS please reply-all as I'm not subscribed to gimp-user.  Thanks.
> > ___
> > Gimp-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
> > 
> > 
> 
> ___
> Gimp-user mailing list
> [EMAIL PROTECTED]
> http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
___
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user



Re: [Gimp-user] working with 40 count images all at once

2001-06-02 Thread Joe McKenzie

Try putting them all in separate layers in one image file, then using 
Scale Image. If Scale Image only does one layer, try Filters->Filter All 
Layers and use Scale Image from there.
You could write a script to put all of the images into one file for you.
If you are using GIMP for Windows, I would suggest getting IrfanView 
(freeware). It has batch image processing. (http://www.irfanview.com)

Dave Morse wrote:

> I'm working on 40 small images.  I'd like to double them all in size,
> using Image>Scale Image ... Ratio X := 2.0, Ratio Y := 2.0.  Is there any
> crafty way to work on all the images at once?  I'm no stranger to scheme,
> btw...
> 
> PS please reply-all as I'm not subscribed to gimp-user.  Thanks.
> ___
> Gimp-user mailing list
> [EMAIL PROTECTED]
> http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
> 
> 

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