[gimp] Bug 779942 - Make GimpPickButton honor monitor profile
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Bug 779942 - Make GimpPickButton honor monitor profile
- Date: Mon, 13 Mar 2017 08:07:03 +0000 (UTC)
commit e2ff186861896c102cf777d13f51573b19a96d0f
Author: Michael Natterer <mitch gimp org>
Date: Mon Mar 13 09:06:00 2017 +0100
Bug 779942 - Make GimpPickButton honor monitor profile
Pass the right flags to gimp_color_transform_new(), and handle a NULL
return value.
libgimpwidgets/gimppickbutton-default.c | 29 ++++++++++++++++++-----------
1 files changed, 18 insertions(+), 11 deletions(-)
---
diff --git a/libgimpwidgets/gimppickbutton-default.c b/libgimpwidgets/gimppickbutton-default.c
index 2ec270f..3fec04a 100644
--- a/libgimpwidgets/gimppickbutton-default.c
+++ b/libgimpwidgets/gimppickbutton-default.c
@@ -229,26 +229,33 @@ gimp_pick_button_pick (GdkScreen *screen,
if (monitor_profile)
{
- GimpColorProfile *srgb_profile;
- GimpColorTransform *transform;
- const Babl *format;
+ GimpColorProfile *srgb_profile;
+ GimpColorTransform *transform;
+ const Babl *format;
+ GimpColorTransformFlags flags = 0;
format = babl_format ("R'G'B'A double");
+ flags |= GIMP_COLOR_TRANSFORM_FLAGS_NOOPTIMIZE;
+ flags |= GIMP_COLOR_TRANSFORM_FLAGS_BLACK_POINT_COMPENSATION;
+
srgb_profile = gimp_color_profile_new_rgb_srgb ();
transform = gimp_color_transform_new (monitor_profile, format,
srgb_profile, format,
- GIMP_COLOR_RENDERING_INTENT_RELATIVE_COLORIMETRIC,
- 0);
+ GIMP_COLOR_RENDERING_INTENT_PERCEPTUAL,
+ flags);
g_object_unref (srgb_profile);
- gimp_color_transform_process_pixels (transform,
- format, &rgb,
- format, &rgb,
- 1);
- gimp_rgb_clamp (&rgb);
+ if (transform)
+ {
+ gimp_color_transform_process_pixels (transform,
+ format, &rgb,
+ format, &rgb,
+ 1);
+ gimp_rgb_clamp (&rgb);
- g_object_unref (transform);
+ g_object_unref (transform);
+ }
}
g_signal_emit_by_name (button, "color-picked", &rgb);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]