Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-08 Thread C R
I was thinking for my own purposes, but it might be a useful way to let people test different configurations without having to change the defaults they are used to. That's one thing I love about the AppImage, is it can happily live right along side my installed ppa, and I have two versions of

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-08 Thread Carmelo DrRaw
> On 08 Sep 2016, at 09:01, C R wrote: > > Indeed. I'm finding the speed to be roughly the same as I'm used to with the > GIMP ppa. > > Out of curiosity, is it possible to package a different set of GIMP defaults > with an AppImage? > For example, say I wanted to: > > 1.

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-08 Thread C R
Indeed. I'm finding the speed to be roughly the same as I'm used to with the GIMP ppa. Out of curiosity, is it possible to package a different set of GIMP defaults with an AppImage? For example, say I wanted to: 1. Set NoHalo as the default interpolation mode for all transformations 2. Set the

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-07 Thread Carmelo DrRaw
> On 07 Sep 2016, at 22:28, C R wrote: > > This is fantastic! I could see this become my preferred way to use GIMP. > G'MIC works like a charm, can't make it break. Used a 2000x2000 test image, > and it just flies! At this point, the performances of the AppImage should be

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-07 Thread C R
This is fantastic! I could see this become my preferred way to use GIMP. G'MIC works like a charm, can't make it break. Used a 2000x2000 test image, and it just flies! Well done, and thanks! -C On Tue, Sep 6, 2016 at 7:13 PM, Carmelo DrRaw wrote: > Thanks, it worked!!!

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Carmelo DrRaw
Thanks, it worked!!! The only part which is still missing is the tracking of monitor changes. I have prepared a special GIMP AppImage with the patched gmic plug-in, if anyone is interested to test it and give some feedback:

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Michael Natterer
On Tue, 2016-09-06 at 16:47 +0200, Carmelo DrRaw wrote: > > > > On 06 Sep 2016, at 16:41, Michael Natterer wrote: > > > > On Tue, 2016-09-06 at 16:30 +0200, Carmelo DrRaw wrote: > > > > In GIMP git master, you would say > > > > gimp_preview_area_set_color_config

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Carmelo DrRaw
> On 06 Sep 2016, at 16:41, Michael Natterer wrote: > > On Tue, 2016-09-06 at 16:30 +0200, Carmelo DrRaw wrote: > > In GIMP git master, you would say > > gimp_preview_area_set_color_config (gimp_preview_get_area (preview), >

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Michael Natterer
On Tue, 2016-09-06 at 16:30 +0200, Carmelo DrRaw wrote: > > > > On 06 Sep 2016, at 15:54, Michael Natterer wrote: > > > > On Tue, 2016-09-06 at 09:53 +0200, Carmelo DrRaw wrote: > > > > > > Dear experts, > > > > > > I am trying to improve the G’MIC plug-in by adding color > >

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Carmelo DrRaw
> On 06 Sep 2016, at 15:54, Michael Natterer wrote: > > On Tue, 2016-09-06 at 09:53 +0200, Carmelo DrRaw wrote: >> Dear experts, >> >> I am trying to improve the G’MIC plug-in by adding color management >> of the preview area. For this, I need to retrieve the GIMP monitor >>

Re: [Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Michael Natterer
On Tue, 2016-09-06 at 09:53 +0200, Carmelo DrRaw wrote: > Dear experts, > > I am trying to improve the G’MIC plug-in by adding color management > of the preview area. For this, I need to retrieve the GIMP monitor > profile from inside the plug-in code. What preview area do you use? In git master

[Gimp-developer] How to retrieve the monitor profile from inside a plug-in

2016-09-06 Thread Carmelo DrRaw
Dear experts, I am trying to improve the G’MIC plug-in by adding color management of the preview area. For this, I need to retrieve the GIMP monitor profile from inside the plug-in code. I have tried the following: GimpColorConfig* color_config = gimp_get_color_configuration();