gimp/plug-ins/common/vinvert.c

315 lines
8.8 KiB
C
Raw Normal View History

/* GIMP - The GNU Image Manipulation Program
1997-11-25 06:05:25 +08:00
* Copyright (C) 1995 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.
1997-11-25 06:05:25 +08:00
*/
/* Value-Invert plug-in v1.1 by Adam D. Moss, adam@foxbox.org. 1999/02/27
*
* RGB<->HSV math optimizations by Mukund Sivaraman <muks@mukund.org>
* makes the plug-in 2-3 times faster. Using gimp_pixel_rgns_process()
* also makes memory management nicer. June 12, 2006.
*
* The plug-in only does v = 255 - v; for each pixel in the image, or
* each entry in the colormap depending upon the type of image, where 'v'
* is the value in HSV color model.
*
* The plug-in code is optimized towards this, in that it is not a full
* RGB->HSV->RGB transform, but shortcuts many of the calculations to
* effectively only do v = 255 - v. In fact, hue (0-360) is never
* calculated. The shortcuts can be derived from running a set of r, g, b
* values through the RGB->HSV transform and then from HSV->RGB and solving
* out the redundant portions.
*
* The plug-in also uses integer code exclusively for the main transform.
*/
#include "config.h"
1997-11-25 06:05:25 +08:00
#include <string.h>
#include <libgimp/gimp.h>
#include "libgimp/stdplugins-intl.h"
1997-11-25 06:05:25 +08:00
#define PLUG_IN_PROC "plug-in-vinvert"
1997-11-25 06:05:25 +08:00
/* Declare local functions.
*/
static void query (void);
static void run (const gchar *name,
gint nparams,
const GimpParam *param,
gint *nreturn_vals,
GimpParam **return_vals);
1997-11-25 06:05:25 +08:00
static void vinvert (GimpDrawable *drawable);
static void vinvert_indexed (gint32 image_ID);
static void vinvert_render_row (const guchar *src,
guchar *dest,
gint width,
gint bpp);
1997-11-25 06:05:25 +08:00
const GimpPlugInInfo PLUG_IN_INFO =
1997-11-25 06:05:25 +08:00
{
NULL, /* init_proc */
NULL, /* quit_proc */
query, /* query_proc */
run, /* run_proc */
1997-11-25 06:05:25 +08:00
};
MAIN ()
static void
Fix a bunch of warnings from Sparse: 2004-11-13 Manish Singh <yosh@gimp.org> Fix a bunch of warnings from Sparse: * app/actions/dockable-commands.c * app/actions/layers-actions.c * app/actions/view-commands.c * app/base/pixel-surround.c * app/config/gimpconfig-utils.c * app/config/gimpscanner.c * app/core/gimpbrushgenerated.c * app/core/gimpcontainer.c * app/core/gimpimage.c * app/dialogs/palette-import-dialog.c * app/file/gimprecentlist.c * app/plug-in/plug-in-params.c * app/text/gimptext-compat.c * app/text/gimptext-parasite.c * app/vectors/gimpbezierstroke.c * app/vectors/gimpstroke.c * app/widgets/gimpcellrendereraccel.c * app/widgets/gimpselectiondata.c * app/xcf/xcf.c * libgimp/gimp.c * libgimpthumb/gimpthumb-utils.c * libgimpthumb/gimpthumbnail.c * modules/cdisplay_proof.c * plug-ins/Lighting/lighting_ui.c * plug-ins/common/csource.c * plug-ins/common/glasstile.c * plug-ins/common/nova.c * plug-ins/common/pcx.c * plug-ins/common/pnm.c * plug-ins/common/randomize.c * plug-ins/common/screenshot.c * plug-ins/common/sel_gauss.c * plug-ins/common/spheredesigner.c * plug-ins/common/wind.c * plug-ins/gfig/gfig-dialog.c * plug-ins/gfig/gfig-dobject.c * plug-ins/gimpressionist/gimpressionist.c * plug-ins/ifscompose/ifscompose.c * plug-ins/print/gimp_main_window.c * plug-ins/print/print.c: Cleanup integer vs. pointer confusion. * app/base/temp-buf.c * app/dialogs/about-dialog.c * plug-ins/common/bumpmap.c * plug-ins/common/jigsaw.c * plug-ins/gfig/gfig-dobject.c: Cosmetic cleanups. * app/config/gimpconfig-deserialize.c * app/config/gimpconfig-path.c * app/config/gimpconfigwriter.c * app/core/gimpgradient.c * app/tools/gimpdrawtool.c * plug-ins/common/nlfilt.c * plug-ins/common/unsharp.c * plug-ins/common/zealouscrop.c: Define inline functions before they are used. * app/core/gimpdrawable-blend.c: PixelRegion definition was changed some time ago, but the initialization here didn't change. Fix it. * app/plug-in/plug-in-rc.c (plug_in_extra_deserialize): No need to assign token twice in a row. * libgimpbase/gimpdatafiles.c (gimp_datafiles_read_directories): No need to initialize file_data, since the code fills out all the fields. * plug-ins/common/CML_explorer.c * plug-ins/common/vpropagate.c: Declare function pointers fully. * plug-ins/common/grid.c (pix_composite): G_INLINE_FUNC isn't needed, we assume we can use the "inline" keyword always. * plug-ins/common/psd_save.c * plug-ins/common/vinvert.c * plug-ins/gfig/gfig-arc.c * plug-ins/gfig/gfig-bezier.c * plug-ins/gfig/gfig-circle.c * plug-ins/gfig/gfig-dialog.c * plug-ins/gfig/gfig-dobject.c * plug-ins/gfig/gfig-ellipse.c * plug-ins/gfig/gfig-line.c * plug-ins/gfig/gfig-poly.c * plug-ins/gfig/gfig-spiral.c * plug-ins/gfig/gfig-star.c * plug-ins/gfig/gfig.c * plug-ins/gimpressionist/orientmap.c * plug-ins/gimpressionist/placement.c * plug-ins/gimpressionist/sizemap.c * plug-ins/imagemap/imap_grid.c * plug-ins/imagemap/imap_main.c * plug-ins/imagemap/imap_preferences.c * plug-ins/imagemap/imap_settings.c * plug-ins/maze/maze.c * plug-ins/sel2path/curve.c * plug-ins/sel2path/fit.c * plug-ins/sel2path/pxl-outline.c * plug-ins/sel2path/spline.c * plug-ins/xjt/xjt.c: Functions with no args should be declared with (void). * plug-ins/common/retinex.c (MSRCR): Initialize max_preview to quiet the compiler.
2004-11-14 10:50:33 +08:00
query (void)
1997-11-25 06:05:25 +08:00
{
static const GimpParamDef args[] =
1997-11-25 06:05:25 +08:00
{
{ GIMP_PDB_INT32, "run-mode", "Interactive, non-interactive" },
{ GIMP_PDB_IMAGE, "image", "Input image (used for indexed images)" },
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable" }
1997-11-25 06:05:25 +08:00
};
gimp_install_procedure (PLUG_IN_PROC,
N_("Invert the brightness of each pixel"),
"This function takes an indexed/RGB image and "
"inverts its 'value' in HSV space. The upshot of "
"this is that the color and saturation at any given "
"point remains the same, but its brightness is "
"effectively inverted. Quite strange. Sometimes "
"produces unpleasant color artifacts on images from "
"lossy sources (ie. JPEG).",
"Adam D. Moss (adam@foxbox.org), "
"Mukund Sivaraman <muks@mukund.org>",
"Adam D. Moss (adam@foxbox.org), "
"Mukund Sivaraman <muks@mukund.org>",
"27th March 1997, "
"12th June 2006",
N_("_Value Invert"),
"RGB*, INDEXED*",
GIMP_PLUGIN,
G_N_ELEMENTS (args), 0,
args, NULL);
gimp_plugin_menu_register (PLUG_IN_PROC, "<Image>/Colors/Invert");
1997-11-25 06:05:25 +08:00
}
static void
run (const gchar *name,
gint nparams,
const GimpParam *param,
gint *nreturn_vals,
GimpParam **return_vals)
1997-11-25 06:05:25 +08:00
{
static GimpParam values[1];
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
GimpRunMode run_mode;
1997-11-25 06:05:25 +08:00
INIT_I18N();
run_mode = param[0].data.d_int32;
1997-11-25 06:05:25 +08:00
*nreturn_vals = 1;
*return_vals = values;
1997-11-25 06:05:25 +08:00
values[0].type = GIMP_PDB_STATUS;
1997-11-25 06:05:25 +08:00
values[0].data.d_status = status;
if (strcmp (name, PLUG_IN_PROC) == 0)
1997-11-25 06:05:25 +08:00
{
GimpDrawable *drawable;
gint32 image_ID;
/* Get the specified drawable */
drawable = gimp_drawable_get (param[2].data.d_drawable);
image_ID = param[1].data.d_image;
1997-11-25 06:05:25 +08:00
/* Make sure that the drawable is indexed or RGB color */
if (gimp_drawable_is_rgb (drawable->drawable_id))
{
vinvert (drawable);
if (run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush ();
}
else if (gimp_drawable_is_indexed (drawable->drawable_id))
{
vinvert_indexed (image_ID);
if (run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush ();
}
1997-11-25 06:05:25 +08:00
else
{
status = GIMP_PDB_EXECUTION_ERROR;
}
gimp_drawable_detach (drawable);
}
else
{
status = GIMP_PDB_CALLING_ERROR;
1997-11-25 06:05:25 +08:00
}
values[0].data.d_status = status;
}
static void
vinvert (GimpDrawable *drawable)
1997-11-25 06:05:25 +08:00
{
gint x, y, width, height;
gdouble total, processed;
gint update;
gint channels;
GimpPixelRgn src_rgn, dest_rgn;
guchar *src_row, *dest_row;
gint i;
gpointer pr;
1997-11-25 06:05:25 +08:00
if (! gimp_drawable_mask_intersect (drawable->drawable_id,
&x, &y, &width, &height))
return;
1997-11-25 06:05:25 +08:00
gimp_progress_init (_("Value Invert"));
1997-11-25 06:05:25 +08:00
channels = gimp_drawable_bpp (drawable->drawable_id);
1997-11-25 06:05:25 +08:00
gimp_pixel_rgn_init (&src_rgn, drawable, x, y, width, height, FALSE, FALSE);
gimp_pixel_rgn_init (&dest_rgn, drawable, x, y, width, height, TRUE, TRUE);
total = width * height;
processed = 0.0;
for (pr = gimp_pixel_rgns_register (2, &src_rgn, &dest_rgn), update = 0;
pr != NULL;
pr = gimp_pixel_rgns_process (pr), update++)
{
src_row = src_rgn.data;
dest_row = dest_rgn.data;
for (i = 0; i < src_rgn.h; i++)
{
vinvert_render_row (src_row, dest_row, src_rgn.w, channels);
src_row += src_rgn.rowstride;
dest_row += dest_rgn.rowstride;
}
processed += src_rgn.w * src_rgn.h;
update %= 16;
if (update == 0)
gimp_progress_update (processed / total);
}
gimp_progress_update (1.0);
gimp_drawable_flush (drawable);
gimp_drawable_merge_shadow (drawable->drawable_id, TRUE);
gimp_drawable_update (drawable->drawable_id, x, y, width, height);
1997-11-25 06:05:25 +08:00
}
static void
vinvert_indexed (gint32 image_ID)
1997-11-25 06:05:25 +08:00
{
guchar *cmap;
gint ncols;
1997-11-25 06:05:25 +08:00
cmap = gimp_image_get_colormap (image_ID, &ncols);
1997-11-25 06:05:25 +08:00
g_return_if_fail (cmap != NULL);
1997-11-25 06:05:25 +08:00
vinvert_render_row (cmap, cmap, ncols, 3);
1997-11-25 06:05:25 +08:00
gimp_image_set_colormap (image_ID, cmap, ncols);
g_free (cmap);
}
static void
vinvert_render_row (const guchar *src,
guchar *dest,
gint width, /* in pixels */
gint bpp)
{
gint j;
gint r, g, b;
gint value, value2, min;
gint delta;
for (j = 0; j < width; j++)
{
r = *src++;
g = *src++;
b = *src++;
if (r > g)
{
value = MAX (r, b);
min = MIN (g, b);
}
else
{
value = MAX (g, b);
min = MIN (r, b);
}
delta = value - min;
if ((value == 0) || (delta == 0))
{
r = 255 - value;
g = 255 - value;
b = 255 - value;
}
else
{
value2 = value / 2;
if (r == value)
{
r = 255 - r;
b = ((r * b) + value2) / value;
g = ((r * g) + value2) / value;
}
else if (g == value)
{
g = 255 - g;
r = ((g * r) + value2) / value;
b = ((g * b) + value2) / value;
}
else
{
b = 255 - b;
g = ((b * g) + value2) / value;
r = ((b * r) + value2) / value;
}
}
*dest++ = r;
*dest++ = g;
*dest++ = b;
if (bpp == 4)
*dest++ = *src++;
1997-11-25 06:05:25 +08:00
}
}