gimp/plug-ins/common/vinvert.c

211 lines
5.3 KiB
C
Raw Normal View History

1997-11-25 06:05:25 +08:00
/*
* Value-Invert plug-in v1.1 by Adam D. Moss, adam@foxbox.org. 1999/02/27
1997-11-25 06:05:25 +08:00
*/
/* The GIMP -- an image manipulation program
* 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
*/
#include "config.h"
1997-11-25 06:05:25 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <libgimp/gimp.h>
#include "libgimp/stdplugins-intl.h"
1997-11-25 06:05:25 +08:00
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 indexed_vinvert (gint32 image_ID);
static void vinvert_render_row (const guchar *src,
guchar *dest,
gint row_width,
gint bpp);
1997-11-25 06:05:25 +08:00
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
query ()
{
static 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
};
1997-11-25 06:05:25 +08:00
gimp_install_procedure ("plug_in_vinvert",
"Invert the 'value' component of an indexed/RGB "
"image in HSV colorspace",
"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).",
1997-11-25 06:05:25 +08:00
"Adam D. Moss (adam@foxbox.org)",
"Adam D. Moss (adam@foxbox.org)",
"27th March 1997",
N_("_Value Invert"),
1997-11-25 06:05:25 +08:00
"RGB*, INDEXED*",
GIMP_PLUGIN,
G_N_ELEMENTS (args), 0,
args, NULL);
gimp_plugin_menu_register ("plug_in_vinvert", "<Image>/Filters/Colors");
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];
GimpDrawable *drawable;
gint32 image_ID;
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
GimpRunMode run_mode;
1997-11-25 06:05:25 +08:00
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;
/* Get the specified drawable */
drawable = gimp_drawable_get (param[2].data.d_drawable);
image_ID = param[1].data.d_image;
if (status == GIMP_PDB_SUCCESS)
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))
1997-11-25 06:05:25 +08:00
{
if (run_mode != GIMP_RUN_NONINTERACTIVE)
{
INIT_I18N();
gimp_progress_init (_("Value Invert..."));
}
1997-11-25 06:05:25 +08:00
vinvert (drawable);
if (run_mode != GIMP_RUN_NONINTERACTIVE)
gimp_displays_flush ();
1997-11-25 06:05:25 +08:00
}
else
if (gimp_drawable_is_indexed (drawable->drawable_id))
1997-11-25 06:05:25 +08:00
{
indexed_vinvert (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;
1997-11-25 06:05:25 +08:00
}
}
values[0].data.d_status = status;
gimp_drawable_detach (drawable);
}
static void
indexed_vinvert (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);
1997-11-25 06:05:25 +08:00
}
static void
vinvert_func (const guchar *src,
guchar *dest,
gint bpp,
gpointer data)
1997-11-25 06:05:25 +08:00
{
gint v1, v2, v3;
1997-11-25 06:05:25 +08:00
v1 = src[0];
v2 = src[1];
v3 = src[2];
1997-11-25 06:05:25 +08:00
gimp_rgb_to_hsv_int (&v1, &v2, &v3);
v3 = 255 - v3;
gimp_hsv_to_rgb_int (&v1, &v2, &v3);
1997-11-25 06:05:25 +08:00
dest[0] = v1;
dest[1] = v2;
dest[2] = v3;
1997-11-25 06:05:25 +08:00
if (bpp == 4)
dest[3] = src[3];
}
static void
vinvert_render_row (const guchar *src,
guchar *dest,
gint row_width, /* in pixels */
gint bpp)
{
while (row_width--)
{
vinvert_func (src, dest, bpp, NULL);
src += bpp;
dest += bpp;
1997-11-25 06:05:25 +08:00
}
}
static void
vinvert (GimpDrawable *drawable)
1997-11-25 06:05:25 +08:00
{
gimp_rgn_iterate2 (drawable, 0 /* unused */, vinvert_func, NULL);
1997-11-25 06:05:25 +08:00
}