added a check for little cms.

2003-11-21  Sven Neumann  <sven@gimp.org>

	* configure.in: added a check for little cms.

	* modules/Makefile.am
	* modules/cdisplay_proof.c: added a color proof display filter
	module contributed by Banlu Kemiyatorn <id@project-ile.net>.
This commit is contained in:
Sven Neumann 2003-11-21 14:44:00 +00:00 committed by Sven Neumann
parent 0f6958f771
commit 5a2600f00d
6 changed files with 489 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2003-11-21 Sven Neumann <sven@gimp.org>
* configure.in: added a check for little cms.
* modules/Makefile.am
* modules/cdisplay_proof.c: added a color proof display filter
module contributed by Banlu Kemiyatorn <id@project-ile.net>.
2003-11-21 Michael Natterer <mitch@gimp.org>
* app/widgets/gimptoolbox.c: added #defines for the data keys used

View File

@ -1036,6 +1036,20 @@ AC_SUBST(LIBWMF)
AC_SUBST(WMF_CFLAGS)
################
# Check for lcms
################
have_lcms=no
AC_CHECK_LIB(lcms, cmsCreateProofingTransform, [
AC_CHECK_HEADER(lcms.h,
have_lcms=yes
LCMS_LIBS="-llcms")])
AC_SUBST(LCMS_LIBS)
AM_CONDITIONAL(HAVE_LCMS, test $have_lcms = yes)
############################################################
# GIF compression: Allow builder to specify at compile time
# which compression style she wants to use for GIFs.

View File

@ -11,20 +11,26 @@ endif
libdir = $(gimpplugindir)/modules
INCLUDES = \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(top_srcdir) \
$(GTK_CFLAGS) \
-I$(includedir)
EXTRA_DIST = \
makefile.msc
if HAVE_LCMS
cdisplay_proof_module = libcdisplay_proof.la
endif
lib_LTLIBRARIES = \
libcolorsel_cmyk.la \
libcolorsel_triangle.la \
libcolorsel_water.la \
libcdisplay_colorblind.la \
libcdisplay_gamma.la \
libcdisplay_highcontrast.la
libcdisplay_highcontrast.la \
$(cdisplay_proof_module)
libcolorsel_cmyk_la_SOURCES = colorsel_cmyk.c
libcolorsel_cmyk_la_LDFLAGS = -avoid-version -module $(no_undefined)
@ -49,3 +55,7 @@ libcdisplay_gamma_la_LIBADD = $(libgimpbase) $(libgimpwidgets) $(GTK_LIBS)
libcdisplay_highcontrast_la_SOURCES = cdisplay_highcontrast.c
libcdisplay_highcontrast_la_LDFLAGS = -avoid-version -module $(no_undefined)
libcdisplay_highcontrast_la_LIBADD = $(libgimpbase) $(libgimpwidgets) $(GTK_LIBS)
libcdisplay_proof_la_SOURCES = cdisplay_proof.c
libcdisplay_proof_la_LDFLAGS = -avoid-version -module $(no_undefined)
libcdisplay_proof_la_LIBADD = $(libgimpbase) $(libgimpwidgets) $(GTK_LIBS) $(LCMS_LIBS)

449
modules/cdisplay_proof.c Normal file
View File

@ -0,0 +1,449 @@
/* The GIMP -- an image manipulation program
* Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include <lcms.h>
#include <gtk/gtk.h>
#include "libgimpbase/gimpbase.h"
#include "libgimpmodule/gimpmodule.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "libgimpmath/gimpmath.h"
#include "libgimp/libgimp-intl.h"
#define CDISPLAY_TYPE_PROOF (cdisplay_proof_type)
#define CDISPLAY_PROOF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CDISPLAY_TYPE_PROOF, CdisplayProof))
#define CDISPLAY_PROOF_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CDISPLAY_TYPE_PROOF, CdisplayProofClass))
#define CDISPLAY_IS_PROOF(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CDISPLAY_TYPE_PROOF))
#define CDISPLAY_IS_PROOF_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CDISPLAY_TYPE_PROOF))
typedef struct _CdisplayProof CdisplayProof;
typedef struct _CdisplayProofClass CdisplayProofClass;
struct _CdisplayProof
{
GimpColorDisplay parent_instance;
gint intent;
gboolean bpc;
gchar *filename;
cmsHTRANSFORM transform;
GtkWidget *vbox;
GtkWidget *optionmenu;
GtkWidget *toggle;
};
struct _CdisplayProofClass
{
GimpColorDisplayClass parent_instance;
};
static GType cdisplay_proof_get_type (GTypeModule *module);
static void cdisplay_proof_class_init (CdisplayProofClass *klass);
static void cdisplay_proof_init (CdisplayProof *proof);
static void cdisplay_proof_finalize (GObject *object);
static GimpColorDisplay * cdisplay_proof_clone (GimpColorDisplay *display);
static void cdisplay_proof_convert (GimpColorDisplay *display,
guchar *buf,
gint width,
gint height,
gint bpp,
gint bpl);
static void cdisplay_proof_load_state (GimpColorDisplay *display,
GimpParasite *state);
static GimpParasite * cdisplay_proof_save_state (GimpColorDisplay *display);
static GtkWidget * cdisplay_proof_configure (GimpColorDisplay *display);
static void cdisplay_proof_configure_reset (GimpColorDisplay *display);
static void cdisplay_proof_changed (GimpColorDisplay *display);
static void proof_intent_callback (GtkWidget *widget,
CdisplayProof *proof);
static void proof_bpc_callback (GtkWidget *widget,
CdisplayProof *proof);
static void proof_file_callback (GtkWidget *widget,
CdisplayProof *proof);
static const GimpModuleInfo cdisplay_proof_info =
{
GIMP_MODULE_ABI_VERSION,
N_("Color proof filter using ICC color profile"),
"Banlu Kemiyatorn <id@project-ile.net>",
"v0.1",
"(c) 2002-2003, released under the GPL",
"November 14, 2003"
};
static GType cdisplay_proof_type = 0;
static GimpColorDisplayClass *parent_class = NULL;
G_MODULE_EXPORT const GimpModuleInfo *
gimp_module_query (GTypeModule *module)
{
return &cdisplay_proof_info;
}
G_MODULE_EXPORT gboolean
gimp_module_register (GTypeModule *module)
{
cdisplay_proof_get_type (module);
return TRUE;
}
static GType
cdisplay_proof_get_type (GTypeModule *module)
{
if (! cdisplay_proof_type)
{
static const GTypeInfo display_info =
{
sizeof (CdisplayProofClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) cdisplay_proof_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (CdisplayProof),
0, /* n_preallocs */
(GInstanceInitFunc) cdisplay_proof_init,
};
cdisplay_proof_type =
g_type_module_register_type (module,
GIMP_TYPE_COLOR_DISPLAY,
"CdisplayProof", &display_info, 0);
}
return cdisplay_proof_type;
}
static void
cdisplay_proof_class_init (CdisplayProofClass *klass)
{
GObjectClass *object_class;
GimpColorDisplayClass *display_class;
object_class = G_OBJECT_CLASS (klass);
display_class = GIMP_COLOR_DISPLAY_CLASS (klass);
parent_class = g_type_class_peek_parent (klass);
object_class->finalize = cdisplay_proof_finalize;
display_class->name = _("Color Proof");
display_class->help_id = "gimp-colordisplay-proof";
display_class->clone = cdisplay_proof_clone;
display_class->convert = cdisplay_proof_convert;
display_class->load_state = cdisplay_proof_load_state;
display_class->save_state = cdisplay_proof_save_state;
display_class->configure = cdisplay_proof_configure;
display_class->configure_reset = cdisplay_proof_configure_reset;
display_class->changed = cdisplay_proof_changed;
cmsErrorAction (LCMS_ERROR_IGNORE);
}
static void
cdisplay_proof_init (CdisplayProof *proof)
{
proof->intent = INTENT_PERCEPTUAL;
proof->bpc = FALSE;
proof->transform = NULL;
proof->filename = NULL;
proof->vbox = NULL;
cdisplay_proof_changed (GIMP_COLOR_DISPLAY (proof));
}
static void
cdisplay_proof_finalize (GObject *object)
{
CdisplayProof *proof = CDISPLAY_PROOF (object);
if (proof->vbox)
{
gtk_widget_destroy (proof->vbox);
proof->vbox = NULL;
}
if (proof->filename)
{
g_free (proof->filename);
proof->filename = NULL;
}
if (proof->transform)
{
cmsDeleteTransform (proof->transform);
proof->transform = NULL;
}
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static GimpColorDisplay *
cdisplay_proof_clone (GimpColorDisplay *display)
{
CdisplayProof *proof = CDISPLAY_PROOF (display);
CdisplayProof *copy;
copy = CDISPLAY_PROOF (gimp_color_display_new (G_TYPE_FROM_INSTANCE (proof)));
copy->intent = proof->intent;
copy->bpc = proof->bpc;
copy->filename = g_strdup (proof->filename);
cdisplay_proof_changed (GIMP_COLOR_DISPLAY (copy));
return GIMP_COLOR_DISPLAY (copy);
}
static void
cdisplay_proof_convert (GimpColorDisplay *display,
guchar *buf,
gint width,
gint height,
gint bpp,
gint bpl)
{
CdisplayProof *proof = CDISPLAY_PROOF (display);
gint y;
if (bpp != 3)
return;
if (! proof->transform)
return;
for (y = 0; y < height; y++, buf += bpl)
cmsDoTransform (proof->transform, buf, buf, width);
}
static void
cdisplay_proof_load_state (GimpColorDisplay *display,
GimpParasite *state)
{
CdisplayProof *proof = CDISPLAY_PROOF (display);
const gchar *str;
str = gimp_parasite_data (state);
if (str[gimp_parasite_data_size (state) - 1] == '\0')
{
gchar **tokens = g_strsplit (str, ",", 3);
if (tokens[0] && tokens[1] && tokens[2])
{
g_free (proof->filename);
proof->intent = atoi (tokens[0]);
proof->bpc = atoi (tokens[1]) ? TRUE : FALSE;
proof->filename = tokens[2];
}
g_strfreev (tokens);
}
}
static GimpParasite *
cdisplay_proof_save_state (GimpColorDisplay *display)
{
CdisplayProof *proof = CDISPLAY_PROOF (display);
GimpParasite *state;
gchar *str;
str = g_strdup_printf ("%d,%d,%s",
proof->intent,
proof->bpc,
proof->filename ? proof->filename : "");
state = gimp_parasite_new ("Display/Proof", GIMP_PARASITE_PERSISTENT,
strlen (str) + 1, str);
g_free (str);
return state;
}
static GtkWidget *
cdisplay_proof_configure (GimpColorDisplay *display)
{
CdisplayProof *proof;
GtkWidget *label;
GtkWidget *hbox;
GtkWidget *fileopen;
proof = CDISPLAY_PROOF (display);
if (proof->vbox)
gtk_widget_destroy (proof->vbox);
proof->vbox = gtk_vbox_new (FALSE, 2);
g_object_add_weak_pointer (G_OBJECT (proof->vbox),
(gpointer *) &proof->vbox);
hbox = gtk_hbox_new (FALSE, 2);
gtk_box_pack_start (GTK_BOX (proof->vbox), hbox, FALSE, FALSE, 0);
gtk_widget_show (hbox);
label = gtk_label_new (_("Intent:"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
proof->optionmenu =
gimp_int_option_menu_new (FALSE,
G_CALLBACK (proof_intent_callback),
proof, proof->intent,
_("Perceptual"),
INTENT_PERCEPTUAL, NULL,
_("Relative Colorimetric"),
INTENT_RELATIVE_COLORIMETRIC, NULL,
_("Saturation"),
INTENT_SATURATION, NULL,
_("Absolute Colorimetric"),
INTENT_ABSOLUTE_COLORIMETRIC, NULL, NULL);
gtk_box_pack_start (GTK_BOX (hbox), proof->optionmenu, FALSE, FALSE, 0);
gtk_widget_show (proof->optionmenu);
proof->toggle = gtk_check_button_new_with_label ("Black Point Compensation");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (proof->toggle), proof->bpc);
gtk_box_pack_start (GTK_BOX (hbox), proof->toggle, FALSE, FALSE, 0);
gtk_widget_show (proof->toggle);
g_signal_connect (proof->toggle, "clicked",
G_CALLBACK (proof_bpc_callback), proof);
hbox = gtk_hbox_new (FALSE, 2);
gtk_box_pack_start (GTK_BOX (proof->vbox), hbox, FALSE, FALSE, 0);
gtk_widget_show (hbox);
label = gtk_label_new (_("Profile:"));
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
fileopen = gimp_file_selection_new (_("Choose an ICC Color Profile"),
proof->filename, FALSE, FALSE);
gtk_box_pack_start (GTK_BOX (hbox), fileopen, FALSE, TRUE, 0);
gtk_widget_show (fileopen);
g_signal_connect (fileopen, "filename-changed",
G_CALLBACK (proof_file_callback), proof);
return proof->vbox;
}
static void
cdisplay_proof_configure_reset (GimpColorDisplay * display)
{
CdisplayProof *proof = CDISPLAY_PROOF (display);
proof->intent = INTENT_PERCEPTUAL;
proof->bpc = FALSE;
if (proof->vbox)
{
gimp_int_option_menu_set_history (GTK_OPTION_MENU (proof->optionmenu),
INTENT_PERCEPTUAL);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (proof->toggle),
proof->bpc);
}
gimp_color_display_changed (GIMP_COLOR_DISPLAY (proof));
}
static void
cdisplay_proof_changed (GimpColorDisplay *display)
{
CdisplayProof *proof;
cmsHPROFILE rgbProfile;
cmsHPROFILE proofProfile;
proof = CDISPLAY_PROOF (display);
if (proof->transform)
{
cmsDeleteTransform (proof->transform);
proof->transform = NULL;
}
/* This should be read from the global parasite pool.
* For now, just use the built-in sRGB profile.
*/
rgbProfile = cmsCreate_sRGBProfile ();
proofProfile = cmsOpenProfileFromFile (proof->filename, "r");
if (proofProfile)
{
proof->transform = cmsCreateProofingTransform (rgbProfile,
TYPE_RGB_8,
rgbProfile, TYPE_RGB_8,
proofProfile,
proof->intent,
proof->intent,
cmsFLAGS_SOFTPROOFING |
(proof->bpc ?
cmsFLAGS_WHITEBLACKCOMPENSATION : 0));
cmsCloseProfile (proofProfile);
}
cmsCloseProfile (rgbProfile);
}
static void
proof_intent_callback (GtkWidget *widget,
CdisplayProof *proof)
{
gimp_menu_item_update (widget, &proof->intent);
gimp_color_display_changed (GIMP_COLOR_DISPLAY (proof));
}
static void
proof_bpc_callback (GtkWidget *widget,
CdisplayProof *proof)
{
gimp_toggle_button_update (widget, &proof->bpc);
gimp_color_display_changed (GIMP_COLOR_DISPLAY (proof));
}
static void
proof_file_callback (GtkWidget *widget,
CdisplayProof *proof)
{
g_free (proof->filename);
proof->filename = gimp_file_selection_get_filename (GIMP_FILE_SELECTION (widget));
gimp_color_display_changed (GIMP_COLOR_DISPLAY (proof));
}

View File

@ -1,3 +1,7 @@
2003-11-21 Sven Neumann <sven@gimp.org>
* POTFILES.in: added color proof module.
2003-11-20 Duarte Loreto <happyguy_pt@hotmail.com>
* pt.po: Updated Portuguese translation.

View File

@ -28,6 +28,7 @@ libgimpwidgets/gimpwidgets.c
modules/cdisplay_colorblind.c
modules/cdisplay_gamma.c
modules/cdisplay_highcontrast.c
modules/cdisplay_proof.c
modules/colorsel_cmyk.c
modules/colorsel_triangle.c
modules/colorsel_water.c