Re: [Gimp-user] Working on multiple files

2004-08-23 Thread David Hodson
khiraly wrote:
What is the simplest way, to do the following day to day job?:
Open 20-40 files at 2592x1944 resolution, and rescal to 1024*768 and
save in .jpg with specific options(progressiv, floating, etc). But all
the image with the same option.
You could try my Gimp batch processing plugin, which is designed
for exactly that. It's at:
http://members.ozemail.com.au/~hodsond/dbp.html
--
David Hodson  --  this night wounds time
___
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


[Gimp-user] Working on multiple files

2004-08-22 Thread khiraly
Hi!

What is the simplest way, to do the following day to day job?:
Open 20-40 files at 2592x1944 resolution, and rescal to 1024*768 and
save in .jpg with specific options(progressiv, floating, etc). But all
the image with the same option.

The history: 
My camera(Canon ps G5) save 3 time bigger .jpg as Gimp.
So the rescaling from software(Gimp) work better, as the algorithm in my
camera (hardware way).

The other job:
My friend have made a website using photoshop. And for my advice she
have saved as .png.
But in IE does not show correctly (the colour not the same)
And the result is ugly. The paintShop pro have too a fault. Just Gimp
save the .png what IE can display correct.
So the job is the following:
Open 54 .png images and do the following:
File-save
Manually is really slow.

It would be good to have an option, for the operations:
1. Apply only for the layer
2. Apply only for the current image
3. Apply for all opened images (!)

Or is it implented? Just I cant find it?

Really appreciate any help, 
 Khiraly




signature.asc
Description: Ez az =?ISO-8859-1?Q?=FCzenetr=E9sz?=	=?ISO-8859-1?Q?_digit=E1lis?= =?ISO-8859-1?Q?_al=E1=EDr=E1ssal?= van	=?ISO-8859-1?Q?ell=E1tva?=


Re: [Gimp-user] Working on multiple files

2004-08-22 Thread Geoffrey
khiraly wrote:
Hi!
What is the simplest way, to do the following day to day job?:
Open 20-40 files at 2592x1944 resolution, and rescal to 1024*768 and
save in .jpg with specific options(progressiv, floating, etc). But all
the image with the same option.
The history: 
My camera(Canon ps G5) save 3 time bigger .jpg as Gimp.
So the rescaling from software(Gimp) work better, as the algorithm in my
camera (hardware way).
Imagemagik is your friend, something like:
Place all the files in the same directory, cd to that directory and:
for fn in *; do
convert -geom 1024x768 $fn new-${fn}
done
Check the man page for imagemagik and convert to see how to add the 
other touches you want (specific options).

The other job:
My friend have made a website using photoshop. And for my advice she
have saved as .png.
But in IE does not show correctly (the colour not the same)
And the result is ugly. The paintShop pro have too a fault. Just Gimp
save the .png what IE can display correct.
So the job is the following:
Open 54 .png images and do the following:
File-save
Manually is really slow.
You should likely be able to do this with imagemagik as well, but I'm 
not sure what the problem is, or whether you'll see any difference.

--
Until later, Geoffrey   Registered Linux User #108567
ATT Certified UNIX System Programmer - 1995
___
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user