Re: [Gimp-user] file types

2005-11-22 Thread Deva

 Since I installed Gimp, all my image files on desktop are IDed as
Gimp files instead of JPG, BMP,TIFF etc. It would be useful to see
these 
 IDs before clicking on the files. Is there an option
forrestoring them?

 CLIFF HANLEY


Well, risking to offend someone using a posix system, I'll just assume
you're using Windows... anyway, the mime types there can be edited from
Folder Options in the file manager. That's in one of the drop down
menus on the top -- I don't think you'll have trouble finding it. From
there you can select specific filetypes and assign them to programs.

On the other hand, this might be the hardest of two ways out of this...
as Mike suggested it might be a lot easier just to reinstall the
program that you want to use the files, so it grabs them again.

The fully rational solution, (on windows) though would be to check the
configurations of both the gimp and whatever program you use as a
viewer and select the filetypes from there, where you'll also find a
preserve mime types (or sth similar) button, that would check if the
mime types are what you defined when the program starts up.

Ah... ok, that's all, sorry for the elementary stuff and the hardly gimp-related subject, everyone :)

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] file types

2005-11-22 Thread Steve Stavropoulos
On 11/21/05, Cliff Hanley wrote:
 Since I installed Gimp, all my image files on desktop are IDed as Gimp files
 instead of JPG, BMP,TIFF etc. It would be useful to see these IDs before
 clicking on the files. Is there an option for restoring them?


 I assume you are on windows and you just want to know the type of the
file before opening it with the gimp. The easy way, is to set the file
manager so it also shows the file extension (ex. 'foo.tif' instead of
'foo'). You can find this in Tools - Options IIRC (I don't use
windows to offer more specific information).
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


[Gimp-user] Decrease many image sizes

2005-11-22 Thread Ezequias Rodrigues da Rocha

Hi list,

This is my first post and I need now to reduce some pictures from 
1024x768 pixels to 800x600 pixels of 108 images.


Could somone tell me how to do it in the command line ?

I am using linux version of Gimp.

Sincerely ...

--
Ezequias Rodrigues da Rocha
http://ezequiasrocha.blogspot.com
msn:[EMAIL PROTECTED]

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


RE: [Gimp-user] Decrease many image sizes

2005-11-22 Thread Leeuw van der, Tim
Hi,

I have a Python script for you that does that using PIL. You'll have to make 
some modifications to remove the win32 dependancy (used for open-file dialog) 
and to change desired image-size to what you desire.

Is that good enough for you? Or do you specifically want to do it with GIMP?

cheers,

--Tim


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Ezequias
Rodrigues da Rocha
Sent: dinsdag 22 november 2005 15:39
To: gimp-user@lists.XCF.Berkeley.EDU
Subject: [Gimp-user] Decrease many image sizes


Hi list,

This is my first post and I need now to reduce some pictures from 
1024x768 pixels to 800x600 pixels of 108 images.

Could somone tell me how to do it in the command line ?

I am using linux version of Gimp.

Sincerely ...

-- 
Ezequias Rodrigues da Rocha
http://ezequiasrocha.blogspot.com
msn:[EMAIL PROTECTED]

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


resize-images.py
Description: resize-images.py
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Decrease many image sizes

2005-11-22 Thread Ezequias Rodrigues da Rocha

Thank you very much Marc and Leeuw.

If I got any error report I will contact you.

More fast I believe.

Best regards
Ezequias

Marc Lehmann wrote:


On Tue, Nov 22, 2005 at 11:39:00AM -0300, Ezequias Rodrigues da Rocha [EMAIL 
PROTECTED] wrote:
 


Hi list,

This is my first post and I need now to reduce some pictures from 
   



 


1024x768 pixels to 800x600 pixels of 108 images.
   



  mkdir small
  cp images small
  cd small
  mogrify -geometry 800x600 *

 


Could somone tell me how to do it in the command line ?
   



Use imagemagick.

 



--
Ezequias Rodrigues da Rocha
http://ezequiasrocha.blogspot.com
msn:[EMAIL PROTECTED]

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Decrease many image sizes

2005-11-22 Thread Joao S. O. Bueno Calligaris
On Tuesday 22 November 2005 12:39 pm, Ezequias Rodrigues da Rocha 
wrote:
 Hi list,

 This is my first post and I need now to reduce some pictures from
 1024x768 pixels to 800x600 pixels of 108 images.

 Could somone tell me how to do it in the command line ?

 I am using linux version of Gimp.

 Sincerely ...


You should usew the convert program from the imagemagick package (it i 
snormmally installed by default in most desktop GNU/Linuxes)


Do something like this:

for i in *jpg;do convert -size 800x600 $i  -resize 800x600 
small_$i;done

in the image directory. (alternatively, instead of prefixing the files 
with small_ , you may prefer to specify another directory  - like
...800x600/$i


Regards,

JS
--
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Decrease many image sizes

2005-11-22 Thread Carol Spears
On Tue, Nov 22, 2005 at 11:39:00AM -0300, Ezequias Rodrigues da Rocha wrote:
 Hi list,
 
 This is my first post and I need now to reduce some pictures from 
 1024x768 pixels to 800x600 pixels of 108 images.
 
 Could somone tell me how to do it in the command line ?
 
 I am using linux version of Gimp.
 
http://www.gimp.org/tutorials/Basic_Batch/

no reason to install all of that extra software the others mentioned.

carol

___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user


Re: [Gimp-user] Decrease many image sizes

2005-11-22 Thread Stephan Hegel

Carol Spears wrote:

http://www.gimp.org/tutorials/Basic_Batch/

No, this is not _the_ way for this simple task. The approaches with
the ImageMagick tools are much more simple and easier to handle.
And: ImageMagick is part of many Linux distributions.

So, really no need to dig into Script-Fu for this ...

Kind regards,
  Stephan.
___
Gimp-user mailing list
Gimp-user@lists.XCF.Berkeley.EDU
https://lists.XCF.Berkeley.EDU/mailman/listinfo/gimp-user