On 30-Dec-09 10:42 AM, Elwin Estle wrote:
Is it in the plan to remove the scheme scripting in Gimp
and go to all Python scripting? Is there much of a difference between
what can be done with either? I have tried a couple of times to learn
Python, but I am an old fogy
Elwin Estle wrote:
#1 is Core Python Programming by Wesley Chun. He covers everything.
There are gotchas in there that you'd have to program in python for
years to learn, all in a nice clear, well organized, progressive,
understandable format. Good reference material in the back too.
Could
Is it in the plan to remove the scheme scripting in Gimp and go to all Python
scripting? Is there much of a difference between what can be done with
either? I have tried a couple of times to learn Python, but I am an old fogy
and keep coming up against a wall whenever I try to get my head arou
Hi,
On Mon, 2007-05-07 at 11:37 +0200, Guillaume Bonillo wrote:
> I am new to scheme scripting.
> What i want to do is open pictures from a directory and apply a very
> simple macro.
>
> I can do it manually with the following steps :
> - open image "the_image.jpg".
> - save as the
Guillaume Bonillo wrote:
> What i want to do is open pictures from a directory and apply a very
> simple macro.
>
> I can do it manually with the following steps :
> - open image "the_image.jpg".
> - save as the_image_with_thumbnail.jpg
> - choose options : q = 0.85 , progressive
Guillaume Bonillo a écrit :
Paul Surgeon a écrit :
On Monday 07 May 2007 11:37, Guillaume Bonillo wrote:
Hi,
I am new to scheme scripting.
What i want to do is open pictures from a directory and apply a very
simple macro.
I can do it manually with the following steps :
- open image "th
Paul Surgeon a écrit :
On Monday 07 May 2007 11:37, Guillaume Bonillo wrote:
Hi,
I am new to scheme scripting.
What i want to do is open pictures from a directory and apply a very
simple macro.
I can do it manually with the following steps :
- open image "the_image.jpg".
- save as .
On Monday 07 May 2007 11:37, Guillaume Bonillo wrote:
> Hi,
>
> I am new to scheme scripting.
> What i want to do is open pictures from a directory and apply a very
> simple macro.
>
> I can do it manually with the following steps :
> - open image "the_image.jpg".
> - save as the_image
Hi,
I am new to scheme scripting.
What i want to do is open pictures from a directory and apply a very
simple macro.
I can do it manually with the following steps :
- open image "the_image.jpg".
- save as the_image_with_thumbnail.jpg
- choose options : q = 0.85 , progressive, an
A destructive way (i.e., work on a duplicate) of doing this would be to
scale your layer down to 1x1 pixels and then fetch the color of that
pixel (using the PDB function 'gimp-drawable-get-pixel')
> Using python, I'm trying to find the color that is used on a layer. The
> layer has an alpha chan
On 11/27/06, Jerry Baker <[EMAIL PROTECTED]> wrote:
Using python, I'm trying to find the color that is used on a layer. The
layer has an alpha channel and it only uses 1 color on the layer. The
problem is, I don't know where the colored pixels are. It may only be
one pixel anywhere on the layer
Using python, I'm trying to find the color that is used on a layer. The
layer has an alpha channel and it only uses 1 color on the layer. The
problem is, I don't know where the colored pixels are. It may only be
one pixel anywhere on the layer, or the entire layer may be filled.
I also need to
On Tue, Sep 16, 2003 at 03:19:42PM +0200, Sven Neumann wrote:
>
> It cannot be set since you are using the compatibility API. There are
> no new PDB calls for the text tool yet but I plan to add them when the
> time has come. If you absolutely need to turn off hinting, you will
> have to wait for
Hi,
John Green <[EMAIL PROTECTED]> writes:
> I've just moved some of my 1.2 scripts to 1.3 and I notice that text
> layers are created with font hinting toggled on. Looking at DB
> browser, hinting is not an option in gimp-text-fontname so how can
> this be set from a script?
It cannot be set si
I've just moved some of my 1.2 scripts to 1.3 and I notice that text layers
are created with font hinting toggled on. Looking at DB browser, hinting is
not an option in gimp-text-fontname so how can this be set from a script?
--
John Green
___
Gimp-user
On Wed, Jul 16, 2003 at 06:14:53PM +0200, Sven Neumann <[EMAIL PROTECTED]> wrote:
> >I'm just new to script-fu and gimp. I was not aware scheme is used for
> >scripting in gimp. I loved that. :D Anyway, I've read the script-fu
> >part of the gimp manual. I have a directory tree with abo
Hi,
Sven Neumann <[EMAIL PROTECTED]> writes:
> for i in '*.png'; do convert -sample 20x20 $i > small-$i; done
That should have read
for i in '*.png'; do convert -sample 20x20 $i small-$i; done
and it might still be wrong but I guess you got the idea anyway.
Sven
__
Hi,
"Paulo J Matos" <[EMAIL PROTECTED]> writes:
>I'm just new to script-fu and gimp. I was not aware scheme is used for
>scripting in gimp. I loved that. :D Anyway, I've read the script-fu
>part of the gimp manual. I have a directory tree with about 1000
>images and I'd like to re
Paulo J Matos wrote:
Hi all,
I'm just new to script-fu and gimp. I was not aware scheme is used for
scripting in gimp. I loved that. :D Anyway, I've read the script-fu
part of the gimp manual. I have a directory tree with about 1000
images and I'd like to resize them all to 20x20. Is there an
Hi all,
I'm just new to script-fu and gimp. I was not aware
scheme is used for scripting in gimp. I loved that. :D Anyway, I've read the
script-fu part of the gimp manual. I have a directory tree with about 1000
images and I'd like to resize them all to 20x20. Is there any script for doing
20 matches
Mail list logo