2008-01-04 23:16:32 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpoperationposterize.c
|
|
|
|
* Copyright (C) 2007 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2008-01-04 23:16:32 +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
|
2008-01-04 23:16:32 +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/>.
|
2008-01-04 23:16:32 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2011-04-28 21:50:39 +08:00
|
|
|
#include <cairo.h>
|
2013-10-15 07:58:39 +08:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2008-01-16 23:52:02 +08:00
|
|
|
#include <gegl.h>
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2019-07-31 16:16:21 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2016-01-17 04:41:00 +08:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2008-01-04 23:16:32 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
|
2012-05-11 03:22:44 +08:00
|
|
|
#include "operations-types.h"
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
#include "gimpoperationposterize.h"
|
|
|
|
|
2016-01-17 04:41:00 +08:00
|
|
|
#include "gimp-intl.h"
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2016-01-17 04:41:00 +08:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_LEVELS
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void gimp_operation_posterize_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_operation_posterize_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
static gboolean gimp_operation_posterize_process (GeglOperation *operation,
|
|
|
|
void *in_buf,
|
|
|
|
void *out_buf,
|
|
|
|
glong samples,
|
|
|
|
const GeglRectangle *roi,
|
|
|
|
gint level);
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GimpOperationPosterize, gimp_operation_posterize,
|
2008-01-26 04:50:32 +08:00
|
|
|
GIMP_TYPE_OPERATION_POINT_FILTER)
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_operation_posterize_parent_class
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2008-01-26 04:50:32 +08:00
|
|
|
gimp_operation_posterize_class_init (GimpOperationPosterizeClass *klass)
|
2008-01-04 23:16:32 +08:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GeglOperationClass *operation_class = GEGL_OPERATION_CLASS (klass);
|
|
|
|
GeglOperationPointFilterClass *point_class = GEGL_OPERATION_POINT_FILTER_CLASS (klass);
|
|
|
|
|
2016-01-17 04:41:00 +08:00
|
|
|
object_class->set_property = gimp_operation_posterize_set_property;
|
|
|
|
object_class->get_property = gimp_operation_posterize_get_property;
|
|
|
|
|
|
|
|
point_class->process = gimp_operation_posterize_process;
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2012-03-30 02:22:22 +08:00
|
|
|
gegl_operation_class_set_keys (operation_class,
|
2012-04-21 06:46:48 +08:00
|
|
|
"name", "gimp:posterize",
|
|
|
|
"categories", "color",
|
2016-01-17 04:41:00 +08:00
|
|
|
"description", _("Reduce to a limited set of colors"),
|
2012-04-21 06:46:48 +08:00
|
|
|
NULL);
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2016-02-10 06:37:29 +08:00
|
|
|
GIMP_CONFIG_PROP_INT (object_class, PROP_LEVELS,
|
|
|
|
"levels",
|
|
|
|
_("Posterize levels"),
|
|
|
|
NULL,
|
|
|
|
2, 256, 3,
|
|
|
|
GIMP_PARAM_STATIC_STRINGS);
|
2008-01-04 23:16:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_operation_posterize_init (GimpOperationPosterize *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-17 04:41:00 +08:00
|
|
|
static void
|
|
|
|
gimp_operation_posterize_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpOperationPosterize *posterize = GIMP_OPERATION_POSTERIZE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_LEVELS:
|
|
|
|
g_value_set_int (value, posterize->levels);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_operation_posterize_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpOperationPosterize *posterize = GIMP_OPERATION_POSTERIZE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_LEVELS:
|
|
|
|
posterize->levels = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-04 23:16:32 +08:00
|
|
|
static gboolean
|
2008-06-11 17:42:22 +08:00
|
|
|
gimp_operation_posterize_process (GeglOperation *operation,
|
|
|
|
void *in_buf,
|
|
|
|
void *out_buf,
|
|
|
|
glong samples,
|
2012-03-26 07:13:37 +08:00
|
|
|
const GeglRectangle *roi,
|
|
|
|
gint level)
|
2008-01-04 23:16:32 +08:00
|
|
|
{
|
2016-01-17 04:41:00 +08:00
|
|
|
GimpOperationPosterize *posterize = GIMP_OPERATION_POSTERIZE (operation);
|
|
|
|
gfloat *src = in_buf;
|
|
|
|
gfloat *dest = out_buf;
|
|
|
|
gfloat levels;
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2016-01-17 04:41:00 +08:00
|
|
|
levels = posterize->levels - 1.0;
|
2008-02-06 23:08:18 +08:00
|
|
|
|
2008-01-29 04:42:48 +08:00
|
|
|
while (samples--)
|
2008-01-04 23:16:32 +08:00
|
|
|
{
|
2008-10-19 21:47:09 +08:00
|
|
|
dest[RED] = RINT (src[RED] * levels) / levels;
|
|
|
|
dest[GREEN] = RINT (src[GREEN] * levels) / levels;
|
|
|
|
dest[BLUE] = RINT (src[BLUE] * levels) / levels;
|
2014-09-26 05:12:35 +08:00
|
|
|
dest[ALPHA] = RINT (src[ALPHA] * levels) / levels;
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
src += 4;
|
|
|
|
dest += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|