Re: [Gimp-user] Turn off a script-fu tool

2013-11-01 Thread Michael Schumacher
Am 02.11.2013 00:18, schrieb Ed:

> How does one turn off a script-fu tool to be able to call another?

There are no tools in Script-Fu - both of these terms have a very
specific meaning in GIMP.

Can you describe what you want to do?

-- 
Regards,
Michael

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] Turn off a script-fu tool

2013-11-01 Thread Ed
How does one turn off a script-fu tool to be able to call another?

___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Path Tool Problems

2013-11-01 Thread Akovia
and I also keep getting stroke problems as well where it will be an
inconsistent broken up stroke.

https://dl.dropboxusercontent.com/u/93550827/temp/path%20stroke.mkv

The path was all made in the xcf and no merging or copy+paste was involved.



--
View this message in context: 
http://gimp.1065349.n5.nabble.com/Path-Tool-Problems-tp40365p40679.html
Sent from the Users mailing list archive at Nabble.com.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] pcx export

2013-11-01 Thread Jenny_222
>It was a 5 minute fix, the entire resolution handling was already
>there, just not connected to the image:
>
>commit 3508079dcf3dfbfc337f838f9771681d661f009e
>Author: Michael Natterer 
>Date:   Fri Nov 1 13:51:31 2013 +0100
>
>plug-ins: add loading and saving of the image's resolution in
>file-pcx
>
> plug-ins/common/file-pcx.c | 20 ++--
> 1 file changed, 18 insertions(+), 2 deletions(-)



**
Thank you Michael, I see your changes:

- pcx_header.hdpi = GUINT16_TO_LE (300);
- pcx_header.vdpi = GUINT16_TO_LE (300);
+ gimp_image_get_resolution (image, &resolution_x, &resolution_y);
+
+ pcx_header.hdpi = GUINT16_TO_LE (RINT (MAX (resolution_x, 1.0)));
+ pcx_header.vdpi = GUINT16_TO_LE (RINT (MAX (resolution_y, 1.0)));

-- 
Jenny_222 (via www.gimpusers.com/forums)
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] pcx export

2013-11-01 Thread Alexandre Prokoudine
On Fri, Nov 1, 2013 at 8:58 PM, Jenny_222  wrote:
>>Jenny_222 (for...@gimpusers.com) wrote:
>>You misunderstood me. This is the plugin you are already using. It
>>needs
>>to be changed to work the way you need it. For this you need to
>>edit the source code and recompile the plugin.
>>
>>If you have no programming experience then it will be a rough ride
>>though. Right now this bug has no real priority for us gimp
>>developers,
>>but it is a fairly easy task if some wants to start with gimp
>>development. If someone is interested you'll probably get help in the
>>#gimp irc channel on gimpnet or on the gimp-development mailing list.
>>
>>I hope this helps,
>>Simon
>
> ***
>
> In LINUX i know how to recompile this plugin, but my company uses Windows 7.
> I have no change to recompile a plugin there.
> Sorry therefore I see no way to fix gimp and we must will have to use 
> photoshop
> once more...

Wait a second :) May I interest you in nightly stable builds for Windows? :)

http://nightly.darkrefraction.com/gimp/stable/

Alexandre
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] pcx export

2013-11-01 Thread Jenny_222
>Jenny_222 (for...@gimpusers.com) wrote:
>You misunderstood me. This is the plugin you are already using. It
>needs
>to be changed to work the way you need it. For this you need to
>edit the source code and recompile the plugin.
>
>If you have no programming experience then it will be a rough ride
>though. Right now this bug has no real priority for us gimp
>developers,
>but it is a fairly easy task if some wants to start with gimp
>development. If someone is interested you'll probably get help in the
>#gimp irc channel on gimpnet or on the gimp-development mailing list.
>
>I hope this helps,
>Simon

***

In LINUX i know how to recompile this plugin, but my company uses Windows 7.
I have no change to recompile a plugin there.
Sorry therefore I see no way to fix gimp and we must will have to use photoshop
once more...

-- 
Jenny_222 (via www.gimpusers.com/forums)
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] Path Tool Problems

2013-11-01 Thread Akovia
This just creeped up again. I can add nodes between certain node pairs, but
not others.
I made this path by joining two paths, then was going back to round the
corners. 
Happens with guides on or off and at any zoom level.

Here is a small vid of it.
https://dl.dropboxusercontent.com/u/93550827/temp/Path-add-nodes.mkv

I'm happy to up the xcf if you think it will help.
Cheers




--
View this message in context: 
http://gimp.1065349.n5.nabble.com/Path-Tool-Problems-tp40365p40672.html
Sent from the Users mailing list archive at Nabble.com.
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] pcx export

2013-11-01 Thread Michael Natterer
On Fri, 2013-11-01 at 12:12 +0100, Simon Budig wrote:
> Jenny_222 (for...@gimpusers.com) wrote:
> > >Thanks Simon, but how can I integrate this plugin?
> > 
> > Or does anyone other know how to install this plugin?
> 
> You misunderstood me. This is the plugin you are already using. It needs
> to be changed to work the way you need it. For this you need to
> edit the source code and recompile the plugin.
> 
> If you have no programming experience then it will be a rough ride
> though. Right now this bug has no real priority for us gimp developers,
> but it is a fairly easy task if some wants to start with gimp
> development. If someone is interested you'll probably get help in the
> #gimp irc channel on gimpnet or on the gimp-development mailing list.

It was a 5 minute fix, the entire resolution handling was already
there, just not connected to the image:

commit 3508079dcf3dfbfc337f838f9771681d661f009e
Author: Michael Natterer 
Date:   Fri Nov 1 13:51:31 2013 +0100

plug-ins: add loading and saving of the image's resolution in
file-pcx

 plug-ins/common/file-pcx.c | 20 ++--
 1 file changed, 18 insertions(+), 2 deletions(-)


___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] pcx export

2013-11-01 Thread Simon Budig
Jenny_222 (for...@gimpusers.com) wrote:
> >Thanks Simon, but how can I integrate this plugin?
> 
> Or does anyone other know how to install this plugin?

You misunderstood me. This is the plugin you are already using. It needs
to be changed to work the way you need it. For this you need to
edit the source code and recompile the plugin.

If you have no programming experience then it will be a rough ride
though. Right now this bug has no real priority for us gimp developers,
but it is a fairly easy task if some wants to start with gimp
development. If someone is interested you'll probably get help in the
#gimp irc channel on gimpnet or on the gimp-development mailing list.

I hope this helps,
Simon
-- 
  si...@budig.de  http://simon.budig.de/
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


Re: [Gimp-user] pcx export

2013-11-01 Thread Alexandre Prokoudine
On Fri, Nov 1, 2013 at 2:52 PM, Jenny_222 wrote:
>>Thanks Simon, but how can I integrate this plugin?
>>**
>
> Or does anyone other know how to install this plugin?

You already have it.

Simon suggested to tweak the source code. This isn't a trivial task though.

Alexandre
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list


[Gimp-user] pcx export

2013-11-01 Thread Jenny_222
>Thanks Simon, but how can I integrate this plugin?
>**

Or does anyone other know how to install this plugin?



-- 
Jenny_222 (via www.gimpusers.com/forums)
___
gimp-user-list mailing list
List address:gimp-user-list@gnome.org
List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list