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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://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
|
|
|
|
|
|
|
#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"
|
2008-01-26 02:35:10 +08:00
|
|
|
#include "gimpposterizeconfig.h"
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
|
2008-06-11 17:42:22 +08:00
|
|
|
static gboolean 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
|
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2008-02-13 00:56:36 +08:00
|
|
|
object_class->set_property = gimp_operation_point_filter_set_property;
|
|
|
|
object_class->get_property = gimp_operation_point_filter_get_property;
|
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",
|
|
|
|
"description", "GIMP Posterize operation",
|
|
|
|
NULL);
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2012-04-21 06:46:48 +08:00
|
|
|
point_class->process = gimp_operation_posterize_process;
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2008-01-26 04:50:32 +08:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
GIMP_OPERATION_POINT_FILTER_PROP_CONFIG,
|
2008-01-26 02:35:10 +08:00
|
|
|
g_param_spec_object ("config",
|
|
|
|
"Config",
|
|
|
|
"The config object",
|
|
|
|
GIMP_TYPE_POSTERIZE_CONFIG,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT));
|
2008-01-04 23:16:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_operation_posterize_init (GimpOperationPosterize *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2008-01-26 04:50:32 +08:00
|
|
|
GimpOperationPointFilter *point = GIMP_OPERATION_POINT_FILTER (operation);
|
|
|
|
GimpPosterizeConfig *config = GIMP_POSTERIZE_CONFIG (point->config);
|
|
|
|
gfloat *src = in_buf;
|
|
|
|
gfloat *dest = out_buf;
|
2008-02-06 23:08:18 +08:00
|
|
|
gfloat levels;
|
2008-01-26 04:50:32 +08:00
|
|
|
|
|
|
|
if (! config)
|
|
|
|
return FALSE;
|
2008-01-04 23:16:32 +08:00
|
|
|
|
2008-02-06 23:08:18 +08:00
|
|
|
levels = config->levels - 1.0;
|
|
|
|
|
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;
|
|
|
|
dest[ALPHA] = src[ALPHA];
|
2008-01-04 23:16:32 +08:00
|
|
|
|
|
|
|
src += 4;
|
|
|
|
dest += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|