2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-11-20 10:49:40 +08:00
|
|
|
* Copyright (C) 1999 Manish Singh <yosh@gimp.org>
|
1999-10-05 03:26:07 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-10-05 03:26:07 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-10-05 03:26:07 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-10-05 03:26:07 +08:00
|
|
|
*/
|
2002-10-20 18:14:17 +08:00
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2012-05-03 09:36:22 +08:00
|
|
|
#include <gegl.h>
|
2000-05-05 21:29:46 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2011-04-28 21:50:39 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2005-02-05 22:10:20 +08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2002-03-15 06:42:50 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2002-10-21 22:15:02 +08:00
|
|
|
#include "libgimpmodule/gimpmodule.h"
|
2002-03-15 06:42:50 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2000-05-27 09:30:21 +08:00
|
|
|
|
2002-10-30 23:12:30 +08:00
|
|
|
#include "libgimp/libgimp-intl.h"
|
2000-05-05 21:29:46 +08:00
|
|
|
|
|
|
|
|
2002-10-23 22:55:07 +08:00
|
|
|
#define DEFAULT_GAMMA 1.0
|
|
|
|
|
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
#define CDISPLAY_TYPE_GAMMA (cdisplay_gamma_get_type ())
|
2002-10-20 18:14:17 +08:00
|
|
|
#define CDISPLAY_GAMMA(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CDISPLAY_TYPE_GAMMA, CdisplayGamma))
|
|
|
|
#define CDISPLAY_GAMMA_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CDISPLAY_TYPE_GAMMA, CdisplayGammaClass))
|
|
|
|
#define CDISPLAY_IS_GAMMA(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CDISPLAY_TYPE_GAMMA))
|
|
|
|
#define CDISPLAY_IS_GAMMA_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CDISPLAY_TYPE_GAMMA))
|
1999-10-05 03:26:07 +08:00
|
|
|
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
typedef struct _CdisplayGamma CdisplayGamma;
|
|
|
|
typedef struct _CdisplayGammaClass CdisplayGammaClass;
|
|
|
|
|
|
|
|
struct _CdisplayGamma
|
1999-10-05 03:26:07 +08:00
|
|
|
{
|
2002-10-20 18:14:17 +08:00
|
|
|
GimpColorDisplay parent_instance;
|
|
|
|
|
|
|
|
gdouble gamma;
|
1999-10-05 03:26:07 +08:00
|
|
|
};
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
struct _CdisplayGammaClass
|
2000-05-04 17:14:43 +08:00
|
|
|
{
|
2002-10-20 18:14:17 +08:00
|
|
|
GimpColorDisplayClass parent_instance;
|
1999-10-05 03:26:07 +08:00
|
|
|
};
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_GAMMA
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2023-05-22 09:51:36 +08:00
|
|
|
GType cdisplay_gamma_get_type (void);
|
2011-01-23 15:28:33 +08:00
|
|
|
|
|
|
|
static void cdisplay_gamma_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void cdisplay_gamma_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2013-11-02 08:51:05 +08:00
|
|
|
static void cdisplay_gamma_convert_buffer (GimpColorDisplay *display,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
GeglRectangle *area);
|
2011-01-23 15:28:33 +08:00
|
|
|
static void cdisplay_gamma_set_gamma (CdisplayGamma *gamma,
|
|
|
|
gdouble value);
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
|
2003-11-22 00:46:17 +08:00
|
|
|
static const GimpModuleInfo cdisplay_gamma_info =
|
2000-05-04 17:14:43 +08:00
|
|
|
{
|
2003-01-03 01:44:28 +08:00
|
|
|
GIMP_MODULE_ABI_VERSION,
|
2000-01-15 03:57:42 +08:00
|
|
|
N_("Gamma color display filter"),
|
1999-10-05 03:26:07 +08:00
|
|
|
"Manish Singh <yosh@gimp.org>",
|
2000-10-16 20:07:55 +08:00
|
|
|
"v0.2",
|
1999-10-05 03:26:07 +08:00
|
|
|
"(c) 1999, released under the GPL",
|
2000-10-16 20:07:55 +08:00
|
|
|
"October 14, 2000"
|
1999-10-05 03:26:07 +08:00
|
|
|
};
|
|
|
|
|
2013-01-18 03:57:50 +08:00
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
G_DEFINE_DYNAMIC_TYPE (CdisplayGamma, cdisplay_gamma,
|
|
|
|
GIMP_TYPE_COLOR_DISPLAY)
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
|
2002-10-20 20:40:30 +08:00
|
|
|
G_MODULE_EXPORT const GimpModuleInfo *
|
|
|
|
gimp_module_query (GTypeModule *module)
|
|
|
|
{
|
|
|
|
return &cdisplay_gamma_info;
|
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
G_MODULE_EXPORT gboolean
|
2002-10-20 20:40:30 +08:00
|
|
|
gimp_module_register (GTypeModule *module)
|
1999-10-05 03:26:07 +08:00
|
|
|
{
|
2008-01-10 06:22:10 +08:00
|
|
|
cdisplay_gamma_register_type (module);
|
2002-10-20 18:14:17 +08:00
|
|
|
|
|
|
|
return TRUE;
|
1999-10-05 03:26:07 +08:00
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
static void
|
|
|
|
cdisplay_gamma_class_init (CdisplayGammaClass *klass)
|
1999-10-05 03:26:07 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpColorDisplayClass *display_class = GIMP_COLOR_DISPLAY_CLASS (klass);
|
1999-10-05 03:26:07 +08:00
|
|
|
|
2011-01-23 15:28:33 +08:00
|
|
|
object_class->get_property = cdisplay_gamma_get_property;
|
|
|
|
object_class->set_property = cdisplay_gamma_set_property;
|
2004-07-04 08:21:03 +08:00
|
|
|
|
2016-04-17 07:11:39 +08:00
|
|
|
GIMP_CONFIG_PROP_DOUBLE (object_class, PROP_GAMMA,
|
|
|
|
"gamma",
|
|
|
|
_("Gamma"),
|
|
|
|
NULL,
|
|
|
|
0.01, 10.0, DEFAULT_GAMMA,
|
|
|
|
0);
|
1999-10-05 03:26:07 +08:00
|
|
|
|
2011-01-23 15:28:33 +08:00
|
|
|
display_class->name = _("Gamma");
|
|
|
|
display_class->help_id = "gimp-colordisplay-gamma";
|
2017-03-05 23:01:59 +08:00
|
|
|
display_class->icon_name = GIMP_ICON_DISPLAY_FILTER_GAMMA;
|
2006-10-02 01:31:42 +08:00
|
|
|
|
2013-11-02 08:51:05 +08:00
|
|
|
display_class->convert_buffer = cdisplay_gamma_convert_buffer;
|
1999-10-05 03:26:07 +08:00
|
|
|
}
|
|
|
|
|
2008-01-10 06:22:10 +08:00
|
|
|
static void
|
|
|
|
cdisplay_gamma_class_finalize (CdisplayGammaClass *klass)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
cdisplay_gamma_init (CdisplayGamma *gamma)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1999-10-05 03:26:07 +08:00
|
|
|
static void
|
2004-07-04 08:21:03 +08:00
|
|
|
cdisplay_gamma_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
1999-10-05 03:26:07 +08:00
|
|
|
{
|
2003-11-22 00:46:17 +08:00
|
|
|
CdisplayGamma *gamma = CDISPLAY_GAMMA (object);
|
1999-10-05 03:26:07 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
switch (property_id)
|
1999-10-05 03:26:07 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
case PROP_GAMMA:
|
|
|
|
g_value_set_double (value, gamma->gamma);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
1999-10-05 03:26:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
static void
|
|
|
|
cdisplay_gamma_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
CdisplayGamma *gamma = CDISPLAY_GAMMA (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_GAMMA:
|
|
|
|
cdisplay_gamma_set_gamma (gamma, g_value_get_double (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2013-11-02 08:51:05 +08:00
|
|
|
static void
|
|
|
|
cdisplay_gamma_convert_buffer (GimpColorDisplay *display,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
GeglRectangle *area)
|
|
|
|
{
|
|
|
|
CdisplayGamma *gamma = CDISPLAY_GAMMA (display);
|
|
|
|
GeglBufferIterator *iter;
|
|
|
|
gdouble one_over_gamma;
|
|
|
|
|
|
|
|
one_over_gamma = 1.0 / gamma->gamma;
|
|
|
|
|
|
|
|
iter = gegl_buffer_iterator_new (buffer, area, 0,
|
|
|
|
babl_format ("R'G'B'A float"),
|
2018-09-11 07:37:01 +08:00
|
|
|
GEGL_ACCESS_READWRITE, GEGL_ABYSS_NONE, 1);
|
2013-11-02 08:51:05 +08:00
|
|
|
|
|
|
|
while (gegl_buffer_iterator_next (iter))
|
|
|
|
{
|
2018-09-11 07:37:01 +08:00
|
|
|
gfloat *data = iter->items[0].data;
|
2013-11-02 08:51:05 +08:00
|
|
|
gint count = iter->length;
|
|
|
|
|
|
|
|
while (count--)
|
|
|
|
{
|
|
|
|
*data = pow (*data, one_over_gamma); data++;
|
|
|
|
*data = pow (*data, one_over_gamma); data++;
|
|
|
|
*data = pow (*data, one_over_gamma); data++;
|
|
|
|
|
|
|
|
data++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-20 18:14:17 +08:00
|
|
|
static void
|
2004-07-04 08:21:03 +08:00
|
|
|
cdisplay_gamma_set_gamma (CdisplayGamma *gamma,
|
|
|
|
gdouble value)
|
2002-10-20 18:14:17 +08:00
|
|
|
{
|
2004-07-04 08:21:03 +08:00
|
|
|
if (value <= 0.0)
|
|
|
|
value = 1.0;
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
if (value != gamma->gamma)
|
|
|
|
{
|
|
|
|
gamma->gamma = value;
|
2002-10-20 18:14:17 +08:00
|
|
|
|
2004-07-04 08:21:03 +08:00
|
|
|
g_object_notify (G_OBJECT (gamma), "gamma");
|
|
|
|
gimp_color_display_changed (GIMP_COLOR_DISPLAY (gamma));
|
2002-10-20 18:14:17 +08:00
|
|
|
}
|
|
|
|
}
|