1997-11-25 06:05:25 +08:00
|
|
|
/*
|
|
|
|
* This is a plug-in for the GIMP.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
* Copyright (C) 1996 Torsten Martinsen
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2000-01-07 18:39:33 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include <stdio.h>
|
1998-06-09 19:41:13 +08:00
|
|
|
#include <stdlib.h>
|
1998-03-26 10:08:31 +08:00
|
|
|
#include <string.h>
|
2000-01-07 18:39:33 +08:00
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-05-30 00:35:47 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
#define SCALE_WIDTH 125
|
|
|
|
#define HISTSIZE 256
|
1998-04-26 23:58:14 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
#define MODE_RGB 0
|
|
|
|
#define MODE_INTEN 1
|
1998-04-26 23:58:14 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
#define INTENSITY(p) ((guint) (p[0]*77+p[1]*150+p[2]*29) >> 8)
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2004-09-25 07:16:19 +08:00
|
|
|
gdouble mask_size;
|
|
|
|
gint mode;
|
|
|
|
gboolean preview;
|
1997-11-25 06:05:25 +08:00
|
|
|
} OilifyVals;
|
|
|
|
|
|
|
|
|
|
|
|
/* Declare local functions.
|
|
|
|
*/
|
|
|
|
static void query (void);
|
2003-07-02 20:03:08 +08:00
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
2000-01-15 01:06:35 +08:00
|
|
|
|
2004-09-29 23:33:02 +08:00
|
|
|
static void oilify (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview);
|
|
|
|
static void oilify_rgb (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview);
|
|
|
|
static void oilify_intensity (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview);
|
2000-01-15 01:06:35 +08:00
|
|
|
|
2004-09-29 23:33:02 +08:00
|
|
|
static gboolean oilify_dialog (GimpDrawable *drawable);
|
2000-01-15 01:06:35 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPlugInInfo PLUG_IN_INFO =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-01-15 01:06:35 +08:00
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static OilifyVals ovals =
|
|
|
|
{
|
2000-01-15 01:06:35 +08:00
|
|
|
7.0, /* mask size */
|
2004-09-25 07:16:19 +08:00
|
|
|
0, /* mode */
|
|
|
|
TRUE /* preview */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
2000-01-15 01:06:35 +08:00
|
|
|
query (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
static GimpParamDef args[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
{ GIMP_PDB_INT32, "run_mode", "Interactive, non-interactive" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image", "Input image (unused)" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable" },
|
|
|
|
{ GIMP_PDB_INT32, "mask_size", "Oil paint mask size" },
|
|
|
|
{ GIMP_PDB_INT32, "mode", "Algorithm {RGB (0), INTENSITY (1)}" }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
gimp_install_procedure ("plug_in_oilify",
|
2004-09-11 23:29:30 +08:00
|
|
|
"Modify the specified drawable to resemble an oil "
|
|
|
|
"painting",
|
|
|
|
"This function performs the well-known oil-paint "
|
|
|
|
"effect on the specified drawable. The size of the "
|
|
|
|
"input mask is specified by 'mask_size'.",
|
|
|
|
"Torsten Martinsen",
|
|
|
|
"Torsten Martinsen",
|
|
|
|
"1996",
|
|
|
|
N_("Oili_fy..."),
|
|
|
|
"RGB*, GRAY*",
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (args), 0,
|
|
|
|
args, NULL);
|
2004-05-07 21:15:52 +08:00
|
|
|
|
|
|
|
gimp_plugin_menu_register ("plug_in_oilify",
|
|
|
|
N_("<Image>/Filters/Artistic"));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-07-02 20:03:08 +08:00
|
|
|
run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2001-12-31 08:21:10 +08:00
|
|
|
static GimpParam values[1];
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpRunMode run_mode;
|
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
INIT_I18N ();
|
1999-05-30 00:35:47 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
run_mode = param[0].data.d_int32;
|
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
/* Get the specified drawable */
|
|
|
|
drawable = gimp_drawable_get (param[2].data.d_drawable);
|
|
|
|
|
1998-04-26 23:58:14 +08:00
|
|
|
*nreturn_vals = 2;
|
2001-12-31 08:21:10 +08:00
|
|
|
*return_vals = values;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-12-31 08:21:10 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
1997-11-25 06:05:25 +08:00
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
switch (run_mode)
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_INTERACTIVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_oilify", &ovals);
|
|
|
|
|
|
|
|
/* First acquire information with a dialog */
|
2004-09-25 07:16:19 +08:00
|
|
|
if (! oilify_dialog (drawable))
|
1998-04-26 23:58:14 +08:00
|
|
|
return;
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Make sure all the arguments are there! */
|
1998-04-26 23:58:14 +08:00
|
|
|
if (nparams != 5)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
2000-02-04 23:12:17 +08:00
|
|
|
else
|
1998-04-26 23:58:14 +08:00
|
|
|
{
|
|
|
|
ovals.mask_size = (gdouble) param[3].data.d_int32;
|
|
|
|
ovals.mode = (gint) param[4].data.d_int32;
|
2000-02-04 23:12:17 +08:00
|
|
|
|
2004-09-11 23:29:30 +08:00
|
|
|
if ((ovals.mask_size < 1.0) ||
|
|
|
|
((ovals.mode != MODE_INTEN) &&
|
|
|
|
(ovals.mode != MODE_RGB)))
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data ("plug_in_oilify", &ovals);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that the drawable is gray or RGB color */
|
2000-08-22 09:26:57 +08:00
|
|
|
if ((status == GIMP_PDB_SUCCESS) &&
|
2001-06-15 04:07:38 +08:00
|
|
|
(gimp_drawable_is_rgb (drawable->drawable_id) ||
|
|
|
|
gimp_drawable_is_gray (drawable->drawable_id)))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-05-30 00:35:47 +08:00
|
|
|
gimp_progress_init (_("Oil Painting..."));
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1));
|
1998-04-26 23:58:14 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
oilify (drawable, NULL);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode != GIMP_RUN_NONINTERACTIVE)
|
1998-04-26 23:58:14 +08:00
|
|
|
gimp_displays_flush ();
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Store data */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode == GIMP_RUN_INTERACTIVE)
|
1998-04-26 23:58:14 +08:00
|
|
|
gimp_set_data ("plug_in_oilify", &ovals, sizeof (OilifyVals));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* gimp_message ("oilify: cannot operate on indexed color images"); */
|
2000-08-22 09:26:57 +08:00
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
|
|
|
|
|
|
gimp_drawable_detach (drawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For each RGB channel, replace the pixel at (x,y) with the
|
|
|
|
* value that occurs most often in the n x n chunk centered
|
|
|
|
* at (x,y).
|
|
|
|
*/
|
|
|
|
static void
|
2004-09-29 23:33:02 +08:00
|
|
|
oilify_rgb (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2004-09-11 23:29:30 +08:00
|
|
|
GimpPixelRgn src_rgn, dest_rgn;
|
|
|
|
gint bytes;
|
|
|
|
gint width, height;
|
|
|
|
guchar *src_row, *src;
|
|
|
|
guchar *dest_row, *dest;
|
|
|
|
gint x, y, c, b, xx, yy, n;
|
|
|
|
gint x1, y1, x2, y2;
|
|
|
|
gint x3, y3, x4, y4;
|
|
|
|
gint Cnt[4];
|
|
|
|
gint Hist[4][HISTSIZE];
|
|
|
|
gpointer pr1;
|
|
|
|
gint progress, max_progress;
|
|
|
|
guchar *src_buf;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* get the selection bounds */
|
2004-09-25 07:16:19 +08:00
|
|
|
if (preview)
|
|
|
|
{
|
2004-09-29 23:33:02 +08:00
|
|
|
gimp_preview_get_position (preview, &x1, &y1);
|
|
|
|
gimp_preview_get_size (preview, &width, &height);
|
2004-09-25 07:16:19 +08:00
|
|
|
|
|
|
|
x2 = x1 + width;
|
|
|
|
y2 = y1 + height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2);
|
|
|
|
width = x2 - x1;
|
|
|
|
height = y2 - y1;
|
|
|
|
}
|
2004-09-11 23:29:30 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
progress = 0;
|
2004-09-11 23:29:30 +08:00
|
|
|
max_progress = width * height;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
bytes = drawable->bpp;
|
|
|
|
|
|
|
|
n = (int) ovals.mask_size / 2;
|
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
gimp_pixel_rgn_init (&dest_rgn, drawable,
|
2004-09-25 07:16:19 +08:00
|
|
|
x1, y1, width, height, (preview == NULL), TRUE);
|
2004-09-11 23:29:30 +08:00
|
|
|
gimp_pixel_rgn_init (&src_rgn, drawable,
|
|
|
|
x1, y1, width, height, FALSE, FALSE);
|
|
|
|
src_buf = g_new (guchar, width * height * bytes);
|
|
|
|
gimp_pixel_rgn_get_rect (&src_rgn, src_buf, x1, y1, width, height);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
for (pr1 = gimp_pixel_rgns_register (1, &dest_rgn);
|
|
|
|
pr1 != NULL;
|
|
|
|
pr1 = gimp_pixel_rgns_process (pr1))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
dest_row = dest_rgn.data;
|
|
|
|
|
|
|
|
for (y = dest_rgn.y; y < (dest_rgn.y + dest_rgn.h); y++)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
|
|
|
dest = dest_row;
|
|
|
|
|
|
|
|
for (x = dest_rgn.x; x < (dest_rgn.x + dest_rgn.w); x++)
|
|
|
|
{
|
|
|
|
x3 = CLAMP ((x - n), x1, x2);
|
|
|
|
y3 = CLAMP ((y - n), y1, y2);
|
|
|
|
x4 = CLAMP ((x + n + 1), x1, x2);
|
|
|
|
y4 = CLAMP ((y + n + 1), y1, y2);
|
|
|
|
|
|
|
|
memset(Cnt, 0, sizeof(Cnt));
|
|
|
|
memset(Hist, 0, sizeof(Hist));
|
|
|
|
|
|
|
|
src_row = src_buf + ((y3 - y1) * width + (x3 - x1)) * bytes;
|
|
|
|
for (yy = y3 ; yy < y4 ; yy++)
|
|
|
|
{
|
|
|
|
src = src_row;
|
|
|
|
for (xx = x3 ; xx < x4 ; xx++)
|
|
|
|
{
|
|
|
|
for (b = 0; b < bytes; b++)
|
|
|
|
{
|
|
|
|
if ((c = ++Hist[b][src[b]]) > Cnt[b])
|
|
|
|
{
|
|
|
|
dest[b] = src[b];
|
|
|
|
Cnt[b] = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
src += bytes;
|
|
|
|
}
|
|
|
|
src_row += width * bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest += bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest_row += dest_rgn.rowstride;
|
|
|
|
}
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
if (preview)
|
|
|
|
{
|
2004-09-29 23:48:08 +08:00
|
|
|
gimp_drawable_preview_draw_region (GIMP_DRAWABLE_PREVIEW (preview),
|
|
|
|
&dest_rgn);
|
2004-09-25 07:16:19 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
progress += dest_rgn.w * dest_rgn.h;
|
|
|
|
if ((progress % 5) == 0)
|
|
|
|
gimp_progress_update ((double) progress / (double) max_progress);
|
|
|
|
}
|
1998-04-26 23:58:14 +08:00
|
|
|
}
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2004-09-11 23:29:30 +08:00
|
|
|
g_free (src_buf);
|
2004-09-25 07:16:19 +08:00
|
|
|
|
|
|
|
if (!preview)
|
|
|
|
{
|
|
|
|
/* update the oil-painted region */
|
|
|
|
gimp_drawable_flush (drawable);
|
|
|
|
gimp_drawable_merge_shadow (drawable->drawable_id, TRUE);
|
|
|
|
gimp_drawable_update (drawable->drawable_id, x1, y1, width, height);
|
|
|
|
}
|
1998-04-26 23:58:14 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1998-04-26 23:58:14 +08:00
|
|
|
/*
|
|
|
|
* For each RGB channel, replace the pixel at (x,y) with the
|
|
|
|
* value that occurs most often in the n x n chunk centered
|
|
|
|
* at (x,y). Histogram is based on intensity.
|
|
|
|
*/
|
|
|
|
static void
|
2004-09-29 23:33:02 +08:00
|
|
|
oilify_intensity (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview)
|
1998-04-26 23:58:14 +08:00
|
|
|
{
|
2004-09-11 23:29:30 +08:00
|
|
|
GimpPixelRgn src_rgn, dest_rgn;
|
|
|
|
gint bytes;
|
|
|
|
gint width, height;
|
|
|
|
guchar *src_row, *src, *selected_src = NULL;
|
|
|
|
guchar *dest_row, *dest;
|
|
|
|
gint x, y, c, xx, yy, n;
|
|
|
|
gint x1, y1, x2, y2;
|
|
|
|
gint x3, y3, x4, y4;
|
|
|
|
gint Cnt;
|
|
|
|
gint Hist[HISTSIZE];
|
2004-09-25 07:16:19 +08:00
|
|
|
gpointer pr1;
|
2004-09-11 23:29:30 +08:00
|
|
|
gint progress, max_progress;
|
2004-09-25 07:16:19 +08:00
|
|
|
guchar *src_buf;
|
1998-04-27 06:12:57 +08:00
|
|
|
|
1998-04-26 23:58:14 +08:00
|
|
|
/* get the selection bounds */
|
2004-09-25 07:16:19 +08:00
|
|
|
if (preview)
|
|
|
|
{
|
2004-09-29 23:33:02 +08:00
|
|
|
gimp_preview_get_position (preview, &x1, &y1);
|
|
|
|
gimp_preview_get_size (preview, &width, &height);
|
2004-09-25 07:16:19 +08:00
|
|
|
|
|
|
|
x2 = x1 + width;
|
|
|
|
y2 = y1 + height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_drawable_mask_bounds (drawable->drawable_id, &x1, &y1, &x2, &y2);
|
|
|
|
width = x2 - x1;
|
|
|
|
height = y2 - y1;
|
|
|
|
}
|
1998-04-26 23:58:14 +08:00
|
|
|
bytes = drawable->bpp;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2004-09-11 23:29:30 +08:00
|
|
|
progress = 0;
|
|
|
|
max_progress = width * height;
|
|
|
|
|
1998-04-26 23:58:14 +08:00
|
|
|
n = (int) ovals.mask_size / 2;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
gimp_pixel_rgn_init (&dest_rgn, drawable,
|
2004-09-25 07:16:19 +08:00
|
|
|
x1, y1, width, height, (preview == NULL), TRUE);
|
|
|
|
gimp_pixel_rgn_init (&src_rgn, drawable,
|
|
|
|
x1, y1, width, height, FALSE, FALSE);
|
|
|
|
src_buf = g_new (guchar, width * height * bytes);
|
|
|
|
gimp_pixel_rgn_get_rect (&src_rgn, src_buf, x1, y1, width, height);
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2000-01-15 01:06:35 +08:00
|
|
|
for (pr1 = gimp_pixel_rgns_register (1, &dest_rgn);
|
|
|
|
pr1 != NULL;
|
|
|
|
pr1 = gimp_pixel_rgns_process (pr1))
|
1998-04-26 23:58:14 +08:00
|
|
|
{
|
|
|
|
dest_row = dest_rgn.data;
|
2003-11-06 23:27:05 +08:00
|
|
|
|
1998-04-26 23:58:14 +08:00
|
|
|
for (y = dest_rgn.y; y < (dest_rgn.y + dest_rgn.h); y++)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
|
|
|
dest = dest_row;
|
|
|
|
|
|
|
|
for (x = dest_rgn.x; x < (dest_rgn.x + dest_rgn.w); x++)
|
|
|
|
{
|
|
|
|
Cnt = 0;
|
|
|
|
memset(Hist, 0, sizeof(Hist));
|
|
|
|
|
|
|
|
x3 = CLAMP ((x - n), x1, x2);
|
|
|
|
y3 = CLAMP ((y - n), y1, y2);
|
|
|
|
x4 = CLAMP ((x + n + 1), x1, x2);
|
|
|
|
y4 = CLAMP ((y + n + 1), y1, y2);
|
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
src_row = src_buf + ((y3 - y1) * width + (x3 - x1)) * bytes;
|
|
|
|
for (yy = y3 ; yy < y4 ; yy++)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
2004-09-25 07:16:19 +08:00
|
|
|
src = src_row;
|
|
|
|
for (xx = x3 ; xx < x4 ; xx++)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
2004-09-25 07:16:19 +08:00
|
|
|
if ((c = ++Hist[INTENSITY(src)]) > Cnt)
|
2004-09-11 23:29:30 +08:00
|
|
|
{
|
2004-09-25 07:16:19 +08:00
|
|
|
Cnt = c;
|
|
|
|
selected_src = src;
|
2004-09-11 23:29:30 +08:00
|
|
|
}
|
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
src += bytes;
|
2004-09-11 23:29:30 +08:00
|
|
|
}
|
2004-09-25 07:16:19 +08:00
|
|
|
|
|
|
|
src_row += width * bytes;
|
2004-09-11 23:29:30 +08:00
|
|
|
}
|
|
|
|
memcpy (dest, selected_src, bytes);
|
|
|
|
dest += bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
dest_row += dest_rgn.rowstride;
|
|
|
|
}
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
if (preview)
|
|
|
|
{
|
2004-09-29 23:48:08 +08:00
|
|
|
gimp_drawable_preview_draw_region (GIMP_DRAWABLE_PREVIEW (preview),
|
|
|
|
&dest_rgn);
|
2004-09-25 07:16:19 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
progress += dest_rgn.w * dest_rgn.h;
|
|
|
|
if ((progress % 5) == 0)
|
|
|
|
gimp_progress_update ((double) progress / (double) max_progress);
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
g_free (src_buf);
|
|
|
|
|
|
|
|
if (!preview)
|
|
|
|
{
|
|
|
|
/* update the oil-painted region */
|
|
|
|
gimp_drawable_flush (drawable);
|
|
|
|
gimp_drawable_merge_shadow (drawable->drawable_id, TRUE);
|
|
|
|
gimp_drawable_update (drawable->drawable_id, x1, y1, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-09-29 23:33:02 +08:00
|
|
|
oilify (GimpDrawable *drawable,
|
|
|
|
GimpPreview *preview)
|
2004-09-25 07:16:19 +08:00
|
|
|
{
|
|
|
|
if (gimp_drawable_is_rgb (drawable->drawable_id) &&
|
|
|
|
(ovals.mode == MODE_INTEN))
|
|
|
|
oilify_intensity (drawable, preview);
|
|
|
|
else
|
|
|
|
oilify_rgb (drawable, preview);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gint
|
2004-09-25 07:16:19 +08:00
|
|
|
oilify_dialog (GimpDrawable *drawable)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2004-09-25 07:16:19 +08:00
|
|
|
GtkWidget *dialog;
|
|
|
|
GtkWidget *main_vbox;
|
|
|
|
GtkWidget *preview;
|
1997-11-25 06:05:25 +08:00
|
|
|
GtkWidget *table;
|
1998-04-26 23:58:14 +08:00
|
|
|
GtkWidget *toggle;
|
2000-01-15 01:15:54 +08:00
|
|
|
GtkObject *adj;
|
2003-11-06 23:27:05 +08:00
|
|
|
gboolean run;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-02 01:01:18 +08:00
|
|
|
gimp_ui_init ("oilify", FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
dialog = gimp_dialog_new (_("Oilify"), "oilify",
|
|
|
|
NULL, 0,
|
|
|
|
gimp_standard_help_func, "plug-in-oilify",
|
|
|
|
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
|
|
|
|
|
|
|
NULL);
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
main_vbox = gtk_vbox_new (FALSE, 12);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
|
|
|
|
gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), main_vbox);
|
|
|
|
gtk_widget_show (main_vbox);
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
preview = gimp_drawable_preview_new (drawable, &ovals.preview);
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), preview, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (preview);
|
|
|
|
g_signal_connect_swapped (preview, "invalidated",
|
|
|
|
G_CALLBACK (oilify), drawable);
|
2000-01-07 18:39:33 +08:00
|
|
|
|
2003-12-11 05:13:29 +08:00
|
|
|
table = gtk_table_new (2, 3, FALSE);
|
2004-05-20 00:51:32 +08:00
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
|
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
|
2004-09-25 07:16:19 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);
|
2003-12-11 05:13:29 +08:00
|
|
|
gtk_widget_show (table);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-05-20 00:51:32 +08:00
|
|
|
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
2004-09-11 23:29:30 +08:00
|
|
|
_("_Mask size:"), SCALE_WIDTH, 0,
|
|
|
|
ovals.mask_size, 3.0, 50.0, 1.0, 5.0, 0,
|
|
|
|
TRUE, 0, 0,
|
|
|
|
NULL, NULL);
|
2003-01-07 14:16:02 +08:00
|
|
|
g_signal_connect (adj, "value_changed",
|
2001-12-31 08:21:10 +08:00
|
|
|
G_CALLBACK (gimp_double_adjustment_update),
|
|
|
|
&ovals.mask_size);
|
2004-09-25 07:16:19 +08:00
|
|
|
g_signal_connect_swapped (adj, "value_changed",
|
|
|
|
G_CALLBACK (gimp_preview_invalidate),
|
|
|
|
preview);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-06-21 06:47:33 +08:00
|
|
|
toggle = gtk_check_button_new_with_mnemonic (_("_Use intensity algorithm"));
|
2004-05-20 00:51:32 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 1, 2, GTK_FILL, 0, 0, 0);
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), ovals.mode);
|
|
|
|
gtk_widget_show (toggle);
|
|
|
|
|
|
|
|
g_signal_connect (toggle, "toggled",
|
|
|
|
G_CALLBACK (gimp_toggle_button_update),
|
|
|
|
&ovals.mode);
|
2004-09-25 07:16:19 +08:00
|
|
|
g_signal_connect_swapped (toggle, "toggled",
|
|
|
|
G_CALLBACK (gimp_preview_invalidate),
|
|
|
|
preview);
|
2004-05-20 00:51:32 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
gtk_widget_show (dialog);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
run = (gimp_dialog_run (GIMP_DIALOG (dialog)) == GTK_RESPONSE_OK);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-09-25 07:16:19 +08:00
|
|
|
gtk_widget_destroy (dialog);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
return run;
|
1998-04-26 23:58:14 +08:00
|
|
|
}
|