Re: [Gimp-user] pcx export

2013-12-13 Thread Alexandre Prokoudine
On Fri, Dec 13, 2013 at 4:18 PM, Jenny_222 wrote:
> some days weregone
>
> same problem with pcx-export
> a picture with 600dpi has only 300dpi after export

We fixed that in the unstable branch in early November. Not sure if
that could be easily fixed in the stable branch as well, 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-12-13 Thread Jenny_222
some days weregone

same problem with pcx-export 
a picture with 600dpi has only 300dpi after export

-- 
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


[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] 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


[Gimp-user] pcx export

2013-10-31 Thread Jenny_222
Thanks Simon, but how can I integrate this plugin?
**
>Jenny_222 (for...@gimpusers.com) wrote:
>You can fix it in the PCX plugin, where the value of 300 dpi is
>hardcoded. Basically the plugin needs to retrieve the relevant
>information from the gimp and put it into the file.
>
>The relevant code is in plug-ins/common/file-pcx.c.
>
>I hope this helps,
>Simon

-- 
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-10-31 Thread Simon Budig
Jenny_222 (for...@gimpusers.com) wrote:
> My grafic has 600ppi grayscale.
> I want to export a pcx-file with 600ppi, but exportet pcx-file has only 
> 300ppi.
> What can I do?

You can fix it in the PCX plugin, where the value of 300 dpi is
hardcoded. Basically the plugin needs to retrieve the relevant
information from the gimp and put it into the file.

The relevant code is in plug-ins/common/file-pcx.c.

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


[Gimp-user] pcx export

2013-10-31 Thread Jenny_222
My grafic has 600ppi grayscale.
I want to export a pcx-file with 600ppi, but exportet pcx-file has only 300ppi.
What can I do?
Jenny

-- 
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