[Gimp-user] Re: GimpShop

2005-04-02 Thread Jonathan D Gibbons
Now, what I think would be really wonderful along these lines would be a 
setup whereby The Gimp can be easily "skinned" to a rearranged UI like 
this.
That way, we can have a Gimp skin that is familiar to Photoshop users, a 
Gimp skin that is familiar to FireWorks users, etc., and perhaps even some 
that are simply designed to be streamlined for a particular purpose - 
photo touchups, for example.

Would make transitioning easier from the other major editors, and would 
even give the Gimp a leg up none of them have - you could switch UIs 
between one that you feel is easier for one task to one that is easier for 
another without actually changing programs - or paying for multiple 
programs, or needing space on disk for more programs.

-Jonathan


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


Re: [Gimp-user] Automating scaling tasks

2005-04-02 Thread David Hodson
Richard C. Steffens wrote:
Is there a set of instructions for automating the task of scaling images?
Use the DBP plugin. All gui-driven, no scripting needed.
Source version: http://members.ozemail.com.au/~hodsond/dbp.html
Windows compiled version: http://schumaml.gmxhome.de/downloads/gimp/
--
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


[Gimp-user] Batch mode Scaling has a dark right edge

2005-04-02 Thread gimp gimp
I'm just using a simple scaling script but sometimeresulting an image with a black vertical line on theright edge. Cant be sure but it seems this usuallyhappens at the smaller size around 125 pixel or lessdimension.Maybe I'm not using the gimp-file-save optionscorrectly.This does NOT happen with the graphical interface! ButI need to do in batch mode.I do not want to do too much outside of this scriptenvironment. Any help would be greatly appreciated.The db browser doesnt sho the argument forgimp-file-save beyond the filename:1. Where or what doe the 1 0 0 0 "pouet" 0 1 0 1 do?(gimp-file-save 1 theImage (car(gimp-image-active-drawable theImage)) "'$mdFile'""'$mdFile'" 1 0 0 0 "pouet" 0 1 0 1))2.  Why is there a dark/black edge on the right sidewhen scaling down?Here is the script and the environment:This is gimp in batch mode code snipet to give
  you an
 idea. Not much moreother redundant condition to scale down to presetsize.  gimp -i -b '(begin   (set! theImage (car (gimp-file-load 1 "'$inFile'""'$inFile'")))  ;test it  (set! imgw (car (gimp-image-width theImage)))  (set! imgh (car (gimp-image-height theImage)))  (set! nwidth imgw)  (set! nheight imgh)  (cond ((not (equal? "'$lgFile'" ""))  (set! mxw 1280)  (set! mxh 1024)  (cond ((or (> imgw mxw) (> imgh mxh)) (set! sratio (min (/ mxw imgw) (/ mxh imgh))) (set! nwidth (* imgw sratio)) (set! nheight (* imgh sratio)) (gimp-image-scale theImage nwidth nheight)))  (gimp-file-save 1 theImage
 (car(gimp-image-active-drawable theImage)) "'$lgFile'""'$lgFile'" 1 0 0 0 "pouet" 0 1 0 1)))  (cond ((not (equal? "'$mdFile'" ""))  (set! mxw 320)  (set! mxh 240)  (cond ((or (> imgw mxw) (> imgh mxh)) (set! sratio (min (/ mxw imgw) (/ mxh imgh))) (set! nwidth (* imgw sratio)) (set! nheight (* imgh sratio)) (gimp-image-scale theImage nwidth nheight)))  (gimp-file-save 1 theImage (car(gimp-image-active-drawable theImage)) "'$mdFile'""'$mdFile'" 1 0 0 0 "pouet" 0 1 0 1)))...fedora 3gimp-2.2.4-0.fc3.3end of info
		Do you Yahoo!? 
Better first dates. More second dates. Yahoo! Personals 



Re: [Gimp-user] Automating scaling tasks

2005-04-02 Thread Jeff Trefftzs
On Sat, 2005-04-02 at 15:26 -0800, Richard C. Steffens wrote:
> Is there a set of instructions for automating the task of scaling images?
> 
> I have a large number of images that I want to scale to three different 
> sizes. 
> I successfully do this manually, and it doesn't take too long, but I'd like 
> to find (or create -- but I can't imagine someone hasn't already done this) a 
> script to run that will do this for me. 
> 
> I would point the Gimp to a directory containing links to images, and have 
> the 
> script cycle through all the images, creating three copies of each image, 
> each scaled to a different size and leaving them in that directory. To get 
> even fancier, I'd save each size in a sub-directory.
> 
> Thanks for helping a Gimp newbie.
> 
ImageMagick is your friend here.  It's specifically designed for just
the type of batch operations you're wanting.  Check out

man convert
man mogrify
and 
man ImageMagick for more details.

Basically you would write a quick shell script along these lines:

#!/bin/bash
indir=/directory/with/original/pix
bigpix=/direceory/with/big/output
medpix=/directory/with/med/pix
thumbpix=/directory/with/thumbnail/pix
thisdir=`pwd`

cd $indir
for $img in *.jpg
do
convert -size 800x800 -resize 800x800 $img $bigpix/$img_big.jpg
convert -size 640x640 -resize 640x640 $img $medpix/$img_med.jpg
convert -size 120x120 -resize 120x120 $img $thumbpix/$img_thumb.jpg
done
cd $thisdir

#  end of bash script

HTH,

-- 
Jeff


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


Re: [Gimp-user] Automating scaling tasks

2005-04-02 Thread Steve Stavropoulos
On Sat, 2 Apr 2005, Richard C. Steffens wrote:

> Is there a set of instructions for automating the task of scaling images?
> 
> I have a large number of images that I want to scale to three different 
> sizes. 
> 
> each scaled to a different size and leaving them in that directory. To get 
> even fancier, I'd save each size in a sub-directory.
> 

 Take a look at this sample bash script I just wrote for you: (it uses the 
convert program from ImageMagick)

mkdir small
mkdir medium
mkdir large
for i in *jpg; do
convert -resize 150x150 $i small/`basename $i .jpg`-small.jpg;
convert -resize 640x480 $i medium/`basename $i .jpg`-medium.jpg;
convert -resize 1600x1200 $i large/`basename $i .jpg`-large.jpg;
done

 I haven't test it in any way, so be carefull. I hope this 'll get you 
started...

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


[Gimp-user] Automating scaling tasks

2005-04-02 Thread Richard C. Steffens
Is there a set of instructions for automating the task of scaling images?

I have a large number of images that I want to scale to three different sizes. 
I successfully do this manually, and it doesn't take too long, but I'd like 
to find (or create -- but I can't imagine someone hasn't already done this) a 
script to run that will do this for me. 

I would point the Gimp to a directory containing links to images, and have the 
script cycle through all the images, creating three copies of each image, 
each scaled to a different size and leaving them in that directory. To get 
even fancier, I'd save each size in a sub-directory.

Thanks for helping a Gimp newbie.

-- 
Regards,

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


Re: [Gimp-user] GimpShop

2005-04-02 Thread Alan Horkan

On Sat, 2 Apr 2005, Pierre-Alexis wrote:

> Date: Sat, 2 Apr 2005 19:28:23 +0200 (CEST)
> From: Pierre-Alexis <[EMAIL PROTECTED]>
> To: Tom Williams <[EMAIL PROTECTED]>
> Cc: gimp-user@lists.xcf.berkeley.edu
> Subject: Re: [Gimp-user] GimpShop
>
> Maybe GimpShop should become an option in the Gimp
> preferences ?
>
> You choose the interface you want when you install The
> Gimp, and you can change it in the Preferences...

The last thing the GIMP needs is another option at startup.
Pick good defaults, and offer preferences.

-- 
Alan Horkan.

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


Re: [Gimp-user] GimpShop

2005-04-02 Thread Frédéric
On Samedi 02 Avril 2005 19:28, Pierre-Alexis wrote:

> Maybe GimpShop should become an option in the Gimp
> preferences ?
>
> You choose the interface you want when you install The
> Gimp, and you can change it in the Preferences...

This is really a good idea. Instead of having an other version, I think 
this could be integrated in the main Gimp developpement.

-- 
   Frédéric

   http://www.gbiloba.org


pgpy9RR7rqaQF.pgp
Description: PGP signature


Re: [Gimp-user] "action" and "batch"

2005-04-02 Thread Pierre-Alexis
I think uou should try ImageMagick :
http://www.imagemagick.org

PA.

--- Ary Kaplan Nakamura <[EMAIL PROTECTED]> wrote:
> I`m moving from Photoshop to Gimp and what I can`t
> find is the "action" 
> option.
> What I mean is that I want to program some actions
> (like re size, save, etc) 
> and then automatically run them.
> In photoshop that is call "action" and the
> automatising to a whole directory 
> is call "automate --> batch".
> What about Gimp ?
> Thanks !
> 
> Ary Kaplan Nakamura
> ___
> Gimp-user mailing list
> Gimp-user@lists.xcf.berkeley.edu
>
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
> 






__
Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails ! 
Créez votre Yahoo! Mail sur http://fr.mail.yahoo.com/
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user


Re: [Gimp-user] GimpShop

2005-04-02 Thread Pierre-Alexis
Maybe GimpShop should become an option in the Gimp
preferences ?

You choose the interface you want when you install The
Gimp, and you can change it in the Preferences...

PA.

--- Tom Williams <[EMAIL PROTECTED]> wrote:
> wayne wrote:
> >
> > One thing good about GimpShop is that I am now
> able to run Gimp 2.2.4. Have 
> > not been able to install a RPM successfully till
> now.
> > 
> > Wayne
> 
> :)
> 
> Peace...
> 
> Tom
> ___
> Gimp-user mailing list
> Gimp-user@lists.xcf.berkeley.edu
>
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user
> 






__
Découvrez le nouveau Yahoo! Mail : 250 Mo d'espace de stockage pour vos mails ! 
Créez votre Yahoo! Mail sur http://fr.mail.yahoo.com/
___
Gimp-user mailing list
Gimp-user@lists.xcf.berkeley.edu
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user