[Gimp-user] Multiple file scaling

2005-06-24 Thread Jon Lapham

Hello list,

Is it possible to rescale multiple images (ie: hundreds) without having 
to open each one individually in the Gimp?  I guess this would be a sort 
of batch processing.


Background: I have a perl script which I run to shrink images before 
uploading to the web.  This typically shrinks the size (and thus upload 
times) of my huge 8MPixel JPEG files from 3-4MB to a few hundred KB. 
This works great, and I use this script all the time.  I just thought it 
would be great if the Gimp could do something similar, as I imagine this 
shrink many images before upload is a process that many people need to do.


Thanks!
-Jon

--
-**-*-*---*-*---*-*---*-*-*-*---*-*---*-*-*-*-*---
 Jon Lapham  [EMAIL PROTECTED]Rio de Janeiro, Brasil
 Personal: http://www.jandr.org/
***-*--**---***---

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread nuno alexandre
On Fri, 2005-06-24 at 10:03 -0300, Jon Lapham wrote:
 Hello list,
 
 Is it possible to rescale multiple images (ie: hundreds) without having 
 to open each one individually in the Gimp?  I guess this would be a sort 
 of batch processing.
Hi,
you can use convert from ImageMagick.
cd /dir/with_images/
for image in *; do convert -scale 100x100 $image $image; done

check the man page for more info :)


nuno
-- 
Non-free programs are dangerous to you and to your community.
Don't let them get a place in your life. - RMS

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread Jon Lapham

nuno alexandre wrote:

you can use convert from ImageMagick.
[snip shell script]


As I mentioned, I have a perl script (incidently using the ImageMagick 
module) which does exactly what your shell script does.


I was just curious if/how the Gimp could do it, as I use the Gimp for 
all my image processing except for this one step.


Thanks, Jon

--
-**-*-*---*-*---*-*---*-*-*-*---*-*---*-*-*-*-*---
 Jon Lapham  [EMAIL PROTECTED]Rio de Janeiro, Brasil
 Personal: http://www.jandr.org/
***-*--**---***---

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread nuno alexandre
On Fri, 2005-06-24 at 10:28 -0300, Jon Lapham wrote:
 nuno alexandre wrote:
  you can use convert from ImageMagick.
  [snip shell script]
 
 As I mentioned, I have a perl script (incidently using the ImageMagick 
 module) which does exactly what your shell script does.
 
 I was just curious if/how the Gimp could do it, as I use the Gimp for 
 all my image processing except for this one step.

From what I've found on the net, related to theGimp capabilities to do
batch jobs,
I can say that you are better suited with ImageMagick and, like you
said, your custom perl scripts.
I quote:

Batch mode is slow. Its not really a practical replacement for tools
like ImageMagick or NetPBM when it comes to large scale image
conversions or similar. At least not without writing some very clever
scripts. 

The problem with this approach is that gimp/script-fu has no built in
procedures to itterate though a list of images. So you cant easily tell
gimp to load up *.jpg and run predator.scm on them, at least not without
it taking a _long_ time.

So you could write a shell script to fire up gimp in batch mode for each
image, but that starts a new gimp for every image. And gimp startup time
is very very slow, especially if you plan to repeat ir a few hndred
times.

src: http://adrian.gimp.org/batch/batch-7.html




nuno

-- 
Non-free programs are dangerous to you and to your community.
Don't let them get a place in your life. - RMS

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


[Gimp-user] Re: Multiple file scaling

2005-06-24 Thread nuno alexandre
Oh and BTW,
Can you _please_ reply only to the list and not to me personally,
unless requested ?

Thank you.

nuno
-- 
Non-free programs are dangerous to you and to your community.
Don't let them get a place in your life. - RMS


___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread David Hodson

Jon Lapham wrote:

Is it possible to rescale multiple images (ie: hundreds) without having 
to open each one individually in the Gimp?  I guess this would be a sort 
of batch processing.


David's Batch Processor (DBP) is a Gimp plugin to do exactly this.
Look at http://members.ozemail.com.au/~hodsond/dbp.html


--
David Hodson  --  this night wounds time
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Re: Multiple file scaling

2005-06-24 Thread Andreas Waechter

nuno alexandre wrote:

Oh and BTW,
Can you _please_ reply only to the list and not to me personally,
unless requested ?


Unfortunately (IMO) this list is set up so that a Reply 
goes NOT to the list but to the original sender of the message.
I don't know why this list is set up in this way - replying 
to the list (for public discussion) is IMO the standard 
case, replying to someone personnally the exception - thus 
the standard setup should be that a reply goes to the list.



___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread David Hodson

nuno alexandre wrote:


I quote:

[...]

src: http://adrian.gimp.org/batch/batch-7.html


I quote http://adrian.gimp.org/batch/batch.html, the contents page
for that document:

NOTE: This doc is ancient. It it wrong. You really want to look at 
Basic_Batch instead.


That's http://gimp.org/tutorials/Basic_Batch/

Or you can use my plugin, which doesn't allow every image operation
(just the common ones), but is entirely interactive, so you don't
have to worry about writing a script.

--
David Hodson  --  this night wounds time
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread Mike Gimp
 I can say that you are better suited with ImageMagick and, like you
 said, your custom perl scripts.
 I quote:
 
 Batch mode is slow. Its not really a practical replacement for tools
 like ImageMagick or NetPBM when it comes to large scale image
 conversions or similar. At least not without writing some very clever
 scripts.
 
 The problem with this approach is that gimp/script-fu has no built in
 procedures to itterate though a list of images. So you cant easily tell
 gimp to load up *.jpg and run predator.scm on them, at least not without
 it taking a _long_ time.
 
 So you could write a shell script to fire up gimp in batch mode for each
 image, but that starts a new gimp for every image. And gimp startup time
 is very very slow, especially if you plan to repeat ir a few hndred
 times.
 
 src: http://adrian.gimp.org/batch/batch-7.html

that web page is from 1998
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Multiple file scaling

2005-06-24 Thread Jon Lapham

David Hodson wrote:

Jon Lapham wrote:

Is it possible to rescale multiple images (ie: hundreds) without 
having to open each one individually in the Gimp?  I guess this would 
be a sort of batch processing.



David's Batch Processor (DBP) is a Gimp plugin to do exactly this.
Look at http://members.ozemail.com.au/~hodsond/dbp.html


Okay, I've installed your plugin, wow, really nice work!

I have a few suggestions, do you want this discussion on the Gimp Users 
list, private email, or some other mailing list?


-Jon

--
-**-*-*---*-*---*-*---*-*-*-*---*-*---*-*-*-*-*---
 Jon Lapham  [EMAIL PROTECTED]Rio de Janeiro, Brasil
 Personal: http://www.jandr.org/
***-*--**---***---

___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Reply to Considered Harmful [was Re: [Gimp-user] Re: Multiple file scaling]

2005-06-24 Thread Alan Horkan

Please do not reply to this message.
Please let this discussion end as quickly as possible.

On Fri, 24 Jun 2005, Andreas Waechter wrote:

 Date: Fri, 24 Jun 2005 16:45:50 +0200
 From: Andreas Waechter [EMAIL PROTECTED]
 To: gimp-user@lists.xcf.berkeley.edu
 Subject: Re: [Gimp-user] Re: Multiple file scaling

 nuno alexandre wrote:
  Oh and BTW,
  Can you _please_ reply only to the list and not to me personally,
  unless requested ?

 Unfortunately (IMO) this list is set up so that a Reply
 goes NOT to the list but to the original sender of the message.

 I don't know why this list is set up in this way - replying
 to the list (for public discussion) is IMO the standard
 case, replying to someone personnally the exception - thus
 the standard setup should be that a reply goes to the list.

This question come up on a regular basis.
Here is a link to one of the more recent discusssion on:
Reply To considered Harmful
http://www.mail-archive.com/gimp-developer@lists.xcf.berkeley.edu/msg09567.html

There are different opinions on this issue.  I strongly encourage people
to read the previous dicussion we had on this recently and to read the
many other discussions on the internet on this topic before replying to
this message.

It is very easy to hit Reply to All and not bother to trim unneeded email
addressess, I do this sometimes myself so I will not grumble when others
do it but if asked I try and be more careful not to do it.

Good email programs include the option to reply to list and have a
single button or keystroke to respond only to the list.  I do not think
anyone has ever disagreed with the idea that more Mail programs should
include this feature.

Please try not to repond to this message unless you have read the previous
discussion I liked to above and you are sure you comment is
absolutely necessary.

Sincerely

Alan Horkan
http://advogato.org/person/AlanHorkan/
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Making GIMP a little more tablet friendly, maybe?

2005-06-24 Thread Sven Neumann
Hi,

Francois du Toit [EMAIL PROTECTED] writes:

 I wanted to suggest something similar. To not make gimp more
 configurable just because there's no space in the user interface
 seems silly to me. Make the feature configurable so the user can use
 gimp the way he/she wants to. If it clutters up the user interface
 then stick it in a config file where it won't bother anyone who
 doesn't want to change it.

That's what we do anyway. Not all options in gimprc are actually
accessible from the preferences dialog. That doesn't change the fact
that user configuration makes life harder for the developers and for
the people documenting the software. But really, there's no problem
with adding yet another configuration option, I would just like to
avoid it if possible.


Sven
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Re: Multiple file scaling

2005-06-24 Thread BandiPat
On Friday 24 June 2005 10:45 am, Andreas Waechter wrote:
 nuno alexandre wrote:
  Oh and BTW,
  Can you _please_ reply only to the list and not to me personally,
  unless requested ?

 Unfortunately (IMO) this list is set up so that a Reply
 goes NOT to the list but to the original sender of the message.
 I don't know why this list is set up in this way - replying
 to the list (for public discussion) is IMO the standard
 case, replying to someone personnally the exception - thus
 the standard setup should be that a reply goes to the list.
===

Andreas,
Not sure what is going on in your Thunderbird, maybe a setting or 
something, but reply should send it right back to the mail list.  I 
know I can press R or L in KMail and it replies to the mail list 
for me.  Usually Thunderbird is quite good at doing replies, so I'm 
thinking maybe a setting is off on your end.

Patrick

-- 
--- KMail v1.8 --- SuSE Linux Pro v9.2 ---
  Registered Linux User #225206
There's no problem so awful that you can't
add some guilt to it and make it even worse!  ...Calvin  Hobbes
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] Re: Multiple file scaling

2005-06-24 Thread Andreas Waechter

Andreas,
Not sure what is going on in your Thunderbird, maybe a setting or 
something, but reply should send it right back to the mail list.  


No, Thunderbird should not reply to the list with the 
current settings of the list.


There is no Reply-To header, thus a Reply has to go to 
the address in the From header - which is the address of 
the original sender, not the list.


The List address is in the To field. Thus only a Reply 
All will go to the list as CC (and to the original sender 
as TO).


Don't blame my mail client for the set-up of the list.

15 out of 17 mail lists I read have a reply-to header with 
the list address, the only other list which has one is one I 
only read and never reply - with those 15 mail lists, a 
Reply goes to the list.


Usually Thunderbird is quite good at doing replies, so I'm 
thinking maybe a setting is off on your end.


Definitely not.

Andreas
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user