2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
2000-02-04 23:12:17 +08:00
|
|
|
*
|
1999-06-06 05:20:19 +08:00
|
|
|
* Compose plug-in (C) 1997,1999 Peter Kirchgessner
|
|
|
|
* e-mail: peter@kirchgessner.net, WWW: http://www.kirchgessner.net
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-25 06:05:25 +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
|
1997-11-25 06:05:25 +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/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This plug-in composes RGB-images from several types of channels
|
|
|
|
*/
|
|
|
|
|
2003-09-11 23:39:07 +08:00
|
|
|
/* Lab colorspace support originally written by Alexey Dyachenko,
|
2004-12-29 05:15:45 +08:00
|
|
|
* merged into the official plug-in by Sven Neumann.
|
2005-09-20 20:33:56 +08:00
|
|
|
*
|
|
|
|
* Support for channels empty or filled with a single mask value
|
|
|
|
* added by Sylvain FORET.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
1999-06-06 05:20:19 +08:00
|
|
|
|
|
|
|
#include "config.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
#include <string.h>
|
2000-01-07 00:40:17 +08:00
|
|
|
|
2000-01-11 23:48:00 +08:00
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include <libgimp/gimpui.h>
|
|
|
|
|
1999-05-30 00:35:47 +08:00
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
#define COMPOSE_PROC "plug-in-compose"
|
|
|
|
#define DRAWABLE_COMPOSE_PROC "plug-in-drawable-compose"
|
|
|
|
#define RECOMPOSE_PROC "plug-in-recompose"
|
|
|
|
#define PLUG_IN_BINARY "compose"
|
|
|
|
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
gint32 ID; /* Image ID of input images or drawable */
|
|
|
|
guchar val; /* Mask value to compose with */
|
|
|
|
} comp;
|
|
|
|
gboolean is_ID;
|
|
|
|
} ComposeInput;
|
|
|
|
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Declare local functions
|
|
|
|
*/
|
2005-09-22 22:27:42 +08:00
|
|
|
static void query (void);
|
|
|
|
static void run (const gchar *name,
|
|
|
|
gint nparams,
|
|
|
|
const GimpParam *param,
|
|
|
|
gint *nreturn_vals,
|
|
|
|
GimpParam **return_vals);
|
|
|
|
|
|
|
|
static gint32 compose (const gchar *compose_type,
|
|
|
|
ComposeInput *inputs,
|
|
|
|
gboolean compose_by_drawable);
|
|
|
|
|
|
|
|
static gint32 create_new_image (const gchar *filename,
|
|
|
|
guint width,
|
|
|
|
guint height,
|
|
|
|
GimpImageType gdtype,
|
|
|
|
gint32 *layer_ID,
|
|
|
|
GimpDrawable **drawable,
|
|
|
|
GimpPixelRgn *pixel_rgn);
|
|
|
|
|
|
|
|
static void compose_rgb (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_rgba (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_hsv (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
2007-01-13 06:53:20 +08:00
|
|
|
static void compose_hsl (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
2005-09-22 22:27:42 +08:00
|
|
|
static void compose_cmy (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_cmyk (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_lab (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_ycbcr470 (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_ycbcr709 (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_ycbcr470f (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
static void compose_ycbcr709f (guchar **src,
|
|
|
|
gint *incr,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha);
|
|
|
|
|
|
|
|
static gboolean compose_dialog (const gchar *compose_type,
|
|
|
|
gint32 drawable_ID);
|
|
|
|
|
|
|
|
static gboolean check_gray (gint32 image_id,
|
|
|
|
gint32 drawable_id,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
static void combo_callback (GimpIntComboBox *cbox,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
static void scale_callback (GtkAdjustment *adj,
|
|
|
|
ComposeInput *input);
|
|
|
|
|
|
|
|
static void check_response (GtkWidget *dialog,
|
|
|
|
gint response,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
static void type_combo_callback (GimpIntComboBox *combo,
|
|
|
|
gpointer data);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-11 23:39:07 +08:00
|
|
|
|
|
|
|
/* LAB colorspace constants */
|
2008-03-29 10:30:58 +08:00
|
|
|
static const double Xn = 0.951;
|
|
|
|
static const double Yn = 1.0;
|
|
|
|
static const double Zn = 1.089;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Maximum number of images to compose */
|
|
|
|
#define MAX_COMPOSE_IMAGES 4
|
|
|
|
|
|
|
|
|
|
|
|
/* Description of a composition */
|
2000-02-04 23:12:17 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2003-03-24 23:33:48 +08:00
|
|
|
const gchar *compose_type; /* Type of composition ("RGB", "RGBA",...) */
|
|
|
|
gint num_images; /* Number of input images needed */
|
|
|
|
/* Channel names and stock ids for dialog */
|
|
|
|
const gchar *channel_name[MAX_COMPOSE_IMAGES];
|
|
|
|
const gchar *channel_icon[MAX_COMPOSE_IMAGES];
|
|
|
|
const gchar *filename; /* Name of new image */
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
/* Compose functon */
|
2003-07-02 19:07:41 +08:00
|
|
|
void (* compose_fun) (guchar **src,
|
2008-10-20 14:04:39 +08:00
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
2004-12-29 09:05:14 +08:00
|
|
|
gboolean dst_has_alpha);
|
1997-11-25 06:05:25 +08:00
|
|
|
} COMPOSE_DSC;
|
|
|
|
|
|
|
|
/* Array of available compositions. */
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
static COMPOSE_DSC compose_dsc[] =
|
|
|
|
{
|
2003-03-24 23:33:48 +08:00
|
|
|
{ N_("RGB"), 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Red:"),
|
|
|
|
N_("_Green:"),
|
|
|
|
N_("_Blue:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ GIMP_STOCK_CHANNEL_RED,
|
|
|
|
GIMP_STOCK_CHANNEL_GREEN,
|
|
|
|
GIMP_STOCK_CHANNEL_BLUE,
|
|
|
|
NULL },
|
|
|
|
"rgb-compose", compose_rgb },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
2003-03-24 23:33:48 +08:00
|
|
|
{ N_("RGBA"), 4,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Red:"),
|
|
|
|
N_("_Green:"),
|
|
|
|
N_("_Blue:"),
|
|
|
|
N_("_Alpha:") },
|
2003-03-24 23:33:48 +08:00
|
|
|
{ GIMP_STOCK_CHANNEL_RED,
|
|
|
|
GIMP_STOCK_CHANNEL_GREEN,
|
|
|
|
GIMP_STOCK_CHANNEL_BLUE,
|
|
|
|
GIMP_STOCK_CHANNEL_ALPHA },
|
|
|
|
"rgba-compose", compose_rgba },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
{ N_("HSV"), 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Hue:"),
|
|
|
|
N_("_Saturation:"),
|
|
|
|
N_("_Value:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"hsv-compose", compose_hsv },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
2007-01-13 06:53:20 +08:00
|
|
|
{ N_("HSL"), 3,
|
|
|
|
{ N_("_Hue:"),
|
|
|
|
N_("_Saturation:"),
|
|
|
|
N_("_Lightness:"),
|
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"hsl-compose", compose_hsl },
|
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
{ N_("CMY"), 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Cyan:"),
|
|
|
|
N_("_Magenta:"),
|
|
|
|
N_("_Yellow:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"cmy-compose", compose_cmy },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
2003-03-24 23:33:48 +08:00
|
|
|
{ N_("CMYK"), 4,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Cyan:"),
|
|
|
|
N_("_Magenta:"),
|
|
|
|
N_("_Yellow:"),
|
|
|
|
N_("_Black:") },
|
2003-03-24 23:33:48 +08:00
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"cmyk-compose", compose_cmyk },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
2003-09-11 23:39:07 +08:00
|
|
|
{ N_("LAB"), 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ "_L:",
|
|
|
|
"_A:",
|
|
|
|
"_B:",
|
2003-09-11 23:39:07 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"lab-compose", compose_lab },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
{ "YCbCr_ITU_R470", 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Luma y470:"),
|
|
|
|
N_("_Blueness cb470:"),
|
|
|
|
N_("_Redness cr470:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"ycbcr470-compose", compose_ycbcr470 },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
{ "YCbCr_ITU_R709", 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Luma y709:"),
|
|
|
|
N_("_Blueness cb709:"),
|
|
|
|
N_("_Redness cr709:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"ycbcr709-compose", compose_ycbcr709 },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
{ "YCbCr_ITU_R470_256", 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Luma y470f:"),
|
|
|
|
N_("_Blueness cb470f:"),
|
|
|
|
N_("_Redness cr470f:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"ycbcr470F-compose", compose_ycbcr470f },
|
2005-09-25 01:34:09 +08:00
|
|
|
|
|
|
|
{ "YCbCr_ITU_R709_256", 3,
|
2005-09-22 22:27:42 +08:00
|
|
|
{ N_("_Luma y709f:"),
|
|
|
|
N_("_Blueness cb709f:"),
|
|
|
|
N_("_Redness cr709f:"),
|
2003-03-24 23:33:48 +08:00
|
|
|
NULL },
|
|
|
|
{ NULL, NULL, NULL, NULL },
|
|
|
|
"ycbcr709F-compose", compose_ycbcr709f },
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
ComposeInput inputs[MAX_COMPOSE_IMAGES]; /* Image IDs or mask value of input */
|
|
|
|
gchar compose_type[32]; /* type of composition */
|
|
|
|
gboolean do_recompose;
|
|
|
|
gint32 source_layer_ID; /* for recomposing */
|
1997-11-25 06:05:25 +08:00
|
|
|
} ComposeVals;
|
|
|
|
|
|
|
|
/* Dialog structure */
|
2000-02-04 23:12:17 +08:00
|
|
|
typedef struct
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
gint width, height; /* Size of selected image */
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
GtkWidget *channel_label[MAX_COMPOSE_IMAGES]; /* The labels to change */
|
|
|
|
GtkWidget *channel_icon[MAX_COMPOSE_IMAGES]; /* The icons */
|
|
|
|
GtkWidget *channel_menu[MAX_COMPOSE_IMAGES]; /* The menus */
|
|
|
|
GtkWidget *color_scales[MAX_COMPOSE_IMAGES]; /* The values color scales */
|
|
|
|
GtkWidget *color_spins[MAX_COMPOSE_IMAGES]; /* The values spin buttons */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
ComposeInput selected[MAX_COMPOSE_IMAGES]; /* Image Ids or mask values from menus */
|
2005-09-22 22:27:42 +08:00
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
gint compose_idx; /* Compose type */
|
1997-11-25 06:05:25 +08:00
|
|
|
} ComposeInterface;
|
|
|
|
|
2006-05-16 20:26:20 +08:00
|
|
|
const GimpPlugInInfo PLUG_IN_INFO =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-02-04 23:12:17 +08:00
|
|
|
NULL, /* init_proc */
|
|
|
|
NULL, /* quit_proc */
|
|
|
|
query, /* query_proc */
|
|
|
|
run, /* run_proc */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static ComposeVals composevals =
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
{{{ 0 }}}, /* Image IDs of images to compose or mask values */
|
|
|
|
"rgb", /* Type of composition */
|
|
|
|
FALSE, /* Do recompose */
|
|
|
|
-1 /* source layer ID */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static ComposeInterface composeint =
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
0, 0, /* width, height */
|
|
|
|
{ NULL }, /* Label Widgets */
|
|
|
|
{ NULL }, /* Icon Widgets */
|
|
|
|
{ NULL }, /* Menu Widgets */
|
|
|
|
{ NULL }, /* Color Scale Widgets */
|
|
|
|
{ NULL }, /* Color Spin Widgets */
|
|
|
|
{{{ 0 }}}, /* Image Ids or mask values from menus */
|
2005-09-22 22:27:42 +08:00
|
|
|
0 /* Compose type */
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
2001-12-19 08:13:16 +08:00
|
|
|
static GimpRunMode run_mode;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
MAIN ()
|
|
|
|
|
|
|
|
static void
|
2000-02-04 23:12:17 +08:00
|
|
|
query (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2007-10-25 11:32:18 +08:00
|
|
|
static GimpParamDef args[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2009-01-20 04:11:36 +08:00
|
|
|
{ GIMP_PDB_INT32, "run-mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" },
|
2004-12-29 05:15:45 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "image1", "First input image" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable (not used)" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image2", "Second input image" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image3", "Third input image" },
|
|
|
|
{ GIMP_PDB_IMAGE, "image4", "Fourth input image" },
|
2007-10-25 11:32:18 +08:00
|
|
|
{ GIMP_PDB_STRING, "compose-type", NULL }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
2004-12-29 05:15:45 +08:00
|
|
|
|
2006-05-16 20:26:20 +08:00
|
|
|
static const GimpParamDef return_vals[] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "new_image", "Output image" }
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
2007-10-25 11:32:18 +08:00
|
|
|
static GimpParamDef drw_args[] =
|
1999-06-06 05:20:19 +08:00
|
|
|
{
|
2009-01-20 04:11:36 +08:00
|
|
|
{ GIMP_PDB_INT32, "run-mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" },
|
2004-12-29 05:15:45 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "image1", "First input image (not used)" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable1", "First input drawable" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable2", "Second input drawable" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable3", "Third input drawable" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable4", "Fourth input drawable" },
|
2007-10-25 11:32:18 +08:00
|
|
|
{ GIMP_PDB_STRING, "compose-type", NULL }
|
1999-06-06 05:20:19 +08:00
|
|
|
};
|
2004-12-29 05:15:45 +08:00
|
|
|
|
2006-05-16 20:26:20 +08:00
|
|
|
static const GimpParamDef drw_return_vals[] =
|
1999-06-06 05:20:19 +08:00
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "new_image", "Output image" }
|
1999-06-06 05:20:19 +08:00
|
|
|
};
|
|
|
|
|
2006-05-16 20:26:20 +08:00
|
|
|
static const GimpParamDef recompose_args[] =
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
2009-01-20 04:11:36 +08:00
|
|
|
{ GIMP_PDB_INT32, "run-mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" },
|
2004-12-29 05:15:45 +08:00
|
|
|
{ GIMP_PDB_IMAGE, "image", "Image to recompose from" },
|
|
|
|
{ GIMP_PDB_DRAWABLE, "drawable", "Not used" },
|
|
|
|
};
|
|
|
|
|
2007-10-25 11:32:18 +08:00
|
|
|
GString *type_desc;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
type_desc = g_string_new ("What to compose: ");
|
|
|
|
g_string_append_c (type_desc, '"');
|
|
|
|
g_string_append (type_desc, compose_dsc[0].compose_type);
|
|
|
|
g_string_append_c (type_desc, '"');
|
|
|
|
|
|
|
|
for (i = 1; i < G_N_ELEMENTS (compose_dsc); i++)
|
|
|
|
{
|
|
|
|
g_string_append (type_desc, ", ");
|
|
|
|
g_string_append_c (type_desc, '"');
|
|
|
|
g_string_append (type_desc, compose_dsc[i].compose_type);
|
|
|
|
g_string_append_c (type_desc, '"');
|
|
|
|
}
|
|
|
|
|
|
|
|
args[6].description = type_desc->str;
|
|
|
|
drw_args[6].description = type_desc->str;
|
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
gimp_install_procedure (COMPOSE_PROC,
|
2008-10-20 14:04:39 +08:00
|
|
|
N_("Create an image using multiple gray images as color channels"),
|
|
|
|
"This function creates a new image from "
|
|
|
|
"multiple gray images",
|
|
|
|
"Peter Kirchgessner",
|
|
|
|
"Peter Kirchgessner (peter@kirchgessner.net)",
|
|
|
|
"1997",
|
|
|
|
N_("C_ompose..."),
|
|
|
|
"GRAY*",
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (args),
|
2001-12-06 10:28:58 +08:00
|
|
|
G_N_ELEMENTS (return_vals),
|
2008-10-20 14:04:39 +08:00
|
|
|
args, return_vals);
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2005-08-17 06:16:37 +08:00
|
|
|
gimp_plugin_menu_register (COMPOSE_PROC, "<Image>/Colors/Components");
|
2004-05-07 08:30:24 +08:00
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
gimp_install_procedure (DRAWABLE_COMPOSE_PROC,
|
2008-10-20 14:04:39 +08:00
|
|
|
"Compose an image from multiple drawables of gray images",
|
|
|
|
"This function creates a new image from "
|
|
|
|
"multiple drawables of gray images",
|
|
|
|
"Peter Kirchgessner",
|
|
|
|
"Peter Kirchgessner (peter@kirchgessner.net)",
|
|
|
|
"1998",
|
|
|
|
NULL, /* It is not available in interactive mode */
|
|
|
|
"GRAY*",
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (drw_args),
|
2001-12-06 10:28:58 +08:00
|
|
|
G_N_ELEMENTS (drw_return_vals),
|
2008-10-20 14:04:39 +08:00
|
|
|
drw_args, drw_return_vals);
|
2004-12-29 05:15:45 +08:00
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
gimp_install_procedure (RECOMPOSE_PROC,
|
2008-10-20 14:04:39 +08:00
|
|
|
N_("Recompose an image that was previously decomposed"),
|
|
|
|
"This function recombines the grayscale layers produced "
|
|
|
|
"by Decompose into a single RGB or RGBA layer, and "
|
2004-12-29 05:15:45 +08:00
|
|
|
"replaces the originally decomposed layer with the "
|
|
|
|
"result.",
|
2008-10-20 14:04:39 +08:00
|
|
|
"Bill Skaggs",
|
|
|
|
"Bill Skaggs",
|
|
|
|
"2004",
|
|
|
|
N_("R_ecompose"),
|
|
|
|
"GRAY*",
|
|
|
|
GIMP_PLUGIN,
|
|
|
|
G_N_ELEMENTS (recompose_args), 0,
|
|
|
|
recompose_args, NULL);
|
2005-08-14 02:29:14 +08:00
|
|
|
|
2005-08-17 06:16:37 +08:00
|
|
|
gimp_plugin_menu_register (RECOMPOSE_PROC, "<Image>/Colors/Components");
|
2007-10-25 11:32:18 +08:00
|
|
|
|
|
|
|
g_string_free (type_desc, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-06-06 05:20:19 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2003-07-02 08:15:09 +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-29 21:26:29 +08:00
|
|
|
static GimpParam values[2];
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpPDBStatusType status = GIMP_PDB_SUCCESS;
|
2004-12-29 05:15:45 +08:00
|
|
|
gint32 image_ID;
|
|
|
|
gint32 drawable_ID = -1;
|
2001-12-29 21:26:29 +08:00
|
|
|
gint compose_by_drawable;
|
2005-09-20 20:33:56 +08:00
|
|
|
gint i;
|
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;
|
2005-08-14 02:29:14 +08:00
|
|
|
compose_by_drawable = (strcmp (name, DRAWABLE_COMPOSE_PROC) == 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-08-15 14:26:27 +08:00
|
|
|
*nreturn_vals = 1;
|
2001-12-29 21:26:29 +08:00
|
|
|
*return_vals = values;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
values[0].type = GIMP_PDB_STATUS;
|
1997-11-25 06:05:25 +08:00
|
|
|
values[0].data.d_status = status;
|
2001-12-29 21:26:29 +08:00
|
|
|
values[1].type = GIMP_PDB_IMAGE;
|
|
|
|
values[1].data.d_int32 = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
if (strcmp (name, RECOMPOSE_PROC) == 0)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2004-12-29 05:15:45 +08:00
|
|
|
GimpParasite *parasite = gimp_image_parasite_find (param[1].data.d_image,
|
|
|
|
"decompose-data");
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
if (! parasite)
|
1999-06-06 05:20:19 +08:00
|
|
|
{
|
2005-09-26 01:25:32 +08:00
|
|
|
g_message (_("You can only run 'Recompose' if the active image "
|
|
|
|
"was originally produced by 'Decompose'."));
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
1999-06-06 05:20:19 +08:00
|
|
|
}
|
2005-09-26 01:25:32 +08:00
|
|
|
else
|
2001-12-29 21:26:29 +08:00
|
|
|
{
|
2005-09-26 01:25:32 +08:00
|
|
|
gint nret;
|
|
|
|
|
|
|
|
nret = sscanf (gimp_parasite_data (parasite),
|
2007-05-31 01:15:38 +08:00
|
|
|
"source=%d type=%31s %d %d %d %d",
|
2005-09-26 01:25:32 +08:00
|
|
|
&composevals.source_layer_ID,
|
|
|
|
composevals.compose_type,
|
|
|
|
&composevals.inputs[0].comp.ID,
|
|
|
|
&composevals.inputs[1].comp.ID,
|
|
|
|
&composevals.inputs[2].comp.ID,
|
|
|
|
&composevals.inputs[3].comp.ID);
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2005-09-26 01:25:32 +08:00
|
|
|
gimp_parasite_free (parasite);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-26 01:25:32 +08:00
|
|
|
for (i = 0; i < MAX_COMPOSE_IMAGES; i++)
|
|
|
|
composevals.inputs[i].is_ID = TRUE;
|
1999-06-06 05:20:19 +08:00
|
|
|
|
2005-09-26 01:25:32 +08:00
|
|
|
if (nret < 5)
|
|
|
|
{
|
|
|
|
g_message (_("Error scanning 'decompose-data' parasite: "
|
|
|
|
"too few layers found"));
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
composevals.do_recompose = TRUE;
|
|
|
|
compose_by_drawable = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2004-12-29 05:15:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
composevals.do_recompose = FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
switch (run_mode)
|
|
|
|
{
|
|
|
|
case GIMP_RUN_INTERACTIVE:
|
|
|
|
/* Possibly retrieve data */
|
2005-09-26 01:25:32 +08:00
|
|
|
gimp_get_data (name, &composevals);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-07-31 06:40:10 +08:00
|
|
|
compose_by_drawable = TRUE;
|
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
/* The dialog is now drawable based. Get a drawable-ID of the image */
|
2005-08-14 02:29:14 +08:00
|
|
|
if (strcmp (name, COMPOSE_PROC) == 0)
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
|
|
|
gint32 *layer_list;
|
2005-09-26 01:25:32 +08:00
|
|
|
gint nlayers;
|
2004-12-29 05:15:45 +08:00
|
|
|
|
2005-09-26 01:25:32 +08:00
|
|
|
layer_list = gimp_image_get_layers (param[1].data.d_int32,
|
|
|
|
&nlayers);
|
2004-12-29 05:15:45 +08:00
|
|
|
if ((layer_list == NULL) || (nlayers <= 0))
|
|
|
|
{
|
|
|
|
g_message (_("Could not get layers for image %d"),
|
|
|
|
(gint) param[1].data.d_int32);
|
|
|
|
return;
|
|
|
|
}
|
2006-08-15 14:26:27 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
drawable_ID = layer_list[0];
|
|
|
|
g_free (layer_list);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
drawable_ID = param[2].data.d_int32;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First acquire information with a dialog */
|
|
|
|
if (! compose_dialog (composevals.compose_type, drawable_ID))
|
|
|
|
return;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_RUN_NONINTERACTIVE:
|
|
|
|
/* Make sure all the arguments are there! */
|
2005-09-20 20:33:56 +08:00
|
|
|
if (nparams < 7)
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
|
|
|
status = GIMP_PDB_CALLING_ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
composevals.inputs[0].comp.ID = (compose_by_drawable ?
|
|
|
|
param[2].data.d_int32 :
|
|
|
|
param[1].data.d_int32);
|
|
|
|
composevals.inputs[1].comp.ID = param[3].data.d_int32;
|
|
|
|
composevals.inputs[2].comp.ID = param[4].data.d_int32;
|
|
|
|
composevals.inputs[3].comp.ID = param[5].data.d_int32;
|
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
strncpy (composevals.compose_type, param[6].data.d_string,
|
|
|
|
sizeof (composevals.compose_type));
|
|
|
|
composevals.compose_type[sizeof (composevals.compose_type)-1] = '\0';
|
2005-09-20 20:33:56 +08:00
|
|
|
|
|
|
|
for (i = 0; i < MAX_COMPOSE_IMAGES; i++)
|
|
|
|
{
|
|
|
|
if (composevals.inputs[i].comp.ID == -1)
|
|
|
|
{
|
2007-09-20 00:56:34 +08:00
|
|
|
composevals.inputs[i].is_ID = FALSE;
|
|
|
|
composevals.inputs[i].comp.val = 0;
|
2005-09-20 20:33:56 +08:00
|
|
|
}
|
|
|
|
else
|
2005-09-25 01:34:09 +08:00
|
|
|
{
|
|
|
|
composevals.inputs[i].is_ID = TRUE;
|
|
|
|
}
|
2005-09-20 20:33:56 +08:00
|
|
|
}
|
2004-12-29 05:15:45 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_RUN_WITH_LAST_VALS:
|
|
|
|
/* Possibly retrieve data */
|
|
|
|
gimp_get_data (name, &composevals);
|
2006-07-31 06:40:10 +08:00
|
|
|
|
|
|
|
compose_by_drawable = TRUE;
|
2004-12-29 05:15:45 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if (status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-30 16:16:10 +08:00
|
|
|
gimp_progress_init (_("Composing"));
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
image_ID = compose (composevals.compose_type,
|
2005-09-20 20:33:56 +08:00
|
|
|
composevals.inputs,
|
1999-06-06 05:20:19 +08:00
|
|
|
compose_by_drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-06-06 05:20:19 +08:00
|
|
|
if (image_ID < 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
status = GIMP_PDB_EXECUTION_ERROR;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
values[1].data.d_int32 = image_ID;
|
2004-12-29 05:15:45 +08:00
|
|
|
|
|
|
|
if (composevals.do_recompose)
|
|
|
|
{
|
|
|
|
gimp_displays_flush ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_image_undo_enable (image_ID);
|
|
|
|
gimp_image_clean_all (image_ID);
|
2006-08-15 14:26:27 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
if (run_mode != GIMP_RUN_NONINTERACTIVE)
|
|
|
|
gimp_display_new (image_ID);
|
|
|
|
}
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Store data */
|
2000-08-22 09:26:57 +08:00
|
|
|
if (run_mode == GIMP_RUN_INTERACTIVE)
|
1999-06-06 05:20:19 +08:00
|
|
|
gimp_set_data (name, &composevals, sizeof (ComposeVals));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2006-08-15 14:26:27 +08:00
|
|
|
*nreturn_vals = composevals.do_recompose ? 1 : 2;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
values[0].data.d_status = status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Compose an image from several gray-images */
|
|
|
|
static gint32
|
2005-09-20 20:33:56 +08:00
|
|
|
compose (const gchar *compose_type,
|
|
|
|
ComposeInput *inputs,
|
|
|
|
gboolean compose_by_drawable)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2004-11-22 01:45:15 +08:00
|
|
|
gint width, height, tile_height, scan_lines;
|
|
|
|
gint num_images, compose_idx, incr_src[MAX_COMPOSE_IMAGES];
|
|
|
|
gint i, j;
|
|
|
|
gint num_layers;
|
|
|
|
gint32 layer_ID_dst, image_ID_dst;
|
|
|
|
guchar *src[MAX_COMPOSE_IMAGES];
|
|
|
|
guchar *dst;
|
2005-09-20 20:33:56 +08:00
|
|
|
gint first_ID;
|
2004-11-22 01:45:15 +08:00
|
|
|
GimpImageType gdtype_dst;
|
|
|
|
GimpDrawable *drawable_src[MAX_COMPOSE_IMAGES], *drawable_dst;
|
|
|
|
GimpPixelRgn pixel_rgn_src[MAX_COMPOSE_IMAGES], pixel_rgn_dst;
|
2004-12-29 09:05:14 +08:00
|
|
|
GimpPixelRgn pixel_rgn_dst_read;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Search type of composing */
|
|
|
|
compose_idx = -1;
|
2003-09-11 23:39:07 +08:00
|
|
|
for (j = 0; j < G_N_ELEMENTS (compose_dsc); j++)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2001-08-30 01:48:28 +08:00
|
|
|
if (g_ascii_strcasecmp (compose_type, compose_dsc[j].compose_type) == 0)
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
|
|
|
compose_idx = j;
|
|
|
|
break;
|
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
if (compose_idx < 0)
|
2004-11-22 01:45:15 +08:00
|
|
|
return -1;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
num_images = compose_dsc[compose_idx].num_images;
|
2004-12-29 05:15:45 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
/* Check that at least one image or one drawable is provided */
|
|
|
|
first_ID = -1;
|
|
|
|
for (i = 0; i < num_images; i++)
|
|
|
|
{
|
|
|
|
if (inputs[i].is_ID)
|
|
|
|
{
|
|
|
|
first_ID = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (-1 == first_ID)
|
|
|
|
{
|
|
|
|
g_message(_("At least one image is needed to compose"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
tile_height = gimp_tile_height ();
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1999-06-06 05:20:19 +08:00
|
|
|
/* Check image sizes */
|
|
|
|
if (compose_by_drawable)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2010-07-09 18:27:36 +08:00
|
|
|
if (! gimp_item_is_valid (inputs[first_ID].comp.ID))
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
2008-04-07 22:07:29 +08:00
|
|
|
g_message (_("Specified layer %d not found"),
|
|
|
|
inputs[first_ID].comp.ID);
|
2004-12-29 05:15:45 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
width = gimp_drawable_width (inputs[first_ID].comp.ID);
|
|
|
|
height = gimp_drawable_height (inputs[first_ID].comp.ID);
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
for (j = first_ID + 1; j < num_images; j++)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
2010-07-09 18:27:36 +08:00
|
|
|
if (! gimp_item_is_valid (inputs[j].comp.ID))
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
2008-04-07 22:07:29 +08:00
|
|
|
g_message (_("Specified layer %d not found"),
|
|
|
|
inputs[j].comp.ID);
|
2005-09-20 20:33:56 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
if ((width != gimp_drawable_width (inputs[j].comp.ID)) ||
|
|
|
|
(height != gimp_drawable_height (inputs[j].comp.ID)))
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
|
|
|
g_message (_("Drawables have different size"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
for (j = 0; j < num_images; j++)
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
|
|
|
if (inputs[j].is_ID)
|
|
|
|
drawable_src[j] = gimp_drawable_get (inputs[j].comp.ID);
|
|
|
|
else
|
|
|
|
drawable_src[j] = NULL;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1999-06-06 05:20:19 +08:00
|
|
|
else /* Compose by image ID */
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-25 01:34:09 +08:00
|
|
|
width = gimp_image_width (inputs[first_ID].comp.ID);
|
2005-09-20 20:33:56 +08:00
|
|
|
height = gimp_image_height (inputs[first_ID].comp.ID);
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
for (j = first_ID + 1; j < num_images; j++)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
|
|
|
{
|
|
|
|
if ((width != gimp_image_width (inputs[j].comp.ID)) ||
|
|
|
|
(height != gimp_image_height (inputs[j].comp.ID)))
|
|
|
|
{
|
|
|
|
g_message (_("Images have different size"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Get first layer/drawable for all input images */
|
|
|
|
for (j = 0; j < num_images; j++)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
|
|
|
{
|
2008-04-07 22:12:48 +08:00
|
|
|
gint32 *layers;
|
2005-09-20 20:33:56 +08:00
|
|
|
|
|
|
|
/* Get first layer of image */
|
2008-04-07 22:12:48 +08:00
|
|
|
layers = gimp_image_get_layers (inputs[j].comp.ID, &num_layers);
|
|
|
|
|
|
|
|
if (! layers || (num_layers <= 0))
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
|
|
|
g_message (_("Error in getting layer IDs"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get drawable for layer */
|
2008-04-07 22:12:48 +08:00
|
|
|
drawable_src[j] = gimp_drawable_get (layers[0]);
|
|
|
|
g_free (layers);
|
2005-09-20 20:33:56 +08:00
|
|
|
}
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-06-06 05:20:19 +08:00
|
|
|
}
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1999-06-06 05:20:19 +08:00
|
|
|
/* Get pixel region for all input drawables */
|
|
|
|
for (j = 0; j < num_images; j++)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
gsize s;
|
2008-04-07 22:12:48 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Check bytes per pixel */
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
|
|
|
{
|
|
|
|
incr_src[j] = drawable_src[j]->bpp;
|
2008-04-07 22:07:29 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
if ((incr_src[j] != 1) && (incr_src[j] != 2))
|
|
|
|
{
|
|
|
|
g_message (_("Image is not a gray image (bpp=%d)"),
|
|
|
|
incr_src[j]);
|
|
|
|
return -1;
|
|
|
|
}
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
/* Get pixel region */
|
2008-04-07 22:12:48 +08:00
|
|
|
gimp_pixel_rgn_init (&pixel_rgn_src[j], drawable_src[j], 0, 0,
|
2005-09-20 20:33:56 +08:00
|
|
|
width, height, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
incr_src[j] = 1;
|
|
|
|
}
|
2008-04-07 22:12:48 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Get memory for retrieving information */
|
2005-09-20 20:33:56 +08:00
|
|
|
s = tile_height * width * incr_src[j];
|
|
|
|
src[j] = g_new (guchar, s);
|
|
|
|
if (! inputs[j].is_ID)
|
|
|
|
memset (src[j], inputs[j].comp.val, s);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
/* Unless recomposing, create new image */
|
|
|
|
if (composevals.do_recompose)
|
|
|
|
{
|
|
|
|
layer_ID_dst = composevals.source_layer_ID;
|
|
|
|
|
2010-07-09 18:27:36 +08:00
|
|
|
if (! gimp_item_is_valid (layer_ID_dst))
|
2004-12-29 05:15:45 +08:00
|
|
|
{
|
|
|
|
g_message (_("Unable to recompose, source layer not found"));
|
|
|
|
return -1;
|
|
|
|
}
|
2004-11-22 01:45:15 +08:00
|
|
|
|
2004-12-29 05:15:45 +08:00
|
|
|
drawable_dst = gimp_drawable_get (layer_ID_dst);
|
2008-04-07 22:12:48 +08:00
|
|
|
gimp_pixel_rgn_init (&pixel_rgn_dst, drawable_dst,
|
|
|
|
0, 0, drawable_dst->width, drawable_dst->height,
|
2004-12-29 05:15:45 +08:00
|
|
|
TRUE, TRUE);
|
2008-04-07 22:12:48 +08:00
|
|
|
gimp_pixel_rgn_init (&pixel_rgn_dst_read, drawable_dst,
|
|
|
|
0, 0, drawable_dst->width, drawable_dst->height,
|
2004-12-29 09:05:14 +08:00
|
|
|
FALSE, FALSE);
|
2010-07-09 18:27:36 +08:00
|
|
|
image_ID_dst = gimp_item_get_image (layer_ID_dst);
|
2004-12-29 05:15:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-09-20 20:33:56 +08:00
|
|
|
gdtype_dst = ((compose_dsc[compose_idx].compose_fun == compose_rgba) ?
|
|
|
|
GIMP_RGBA_IMAGE : GIMP_RGB_IMAGE);
|
2004-12-29 05:15:45 +08:00
|
|
|
|
|
|
|
image_ID_dst = create_new_image (compose_dsc[compose_idx].filename,
|
|
|
|
width, height, gdtype_dst,
|
|
|
|
&layer_ID_dst, &drawable_dst,
|
|
|
|
&pixel_rgn_dst);
|
|
|
|
}
|
2004-11-22 01:45:15 +08:00
|
|
|
|
|
|
|
if (! compose_by_drawable)
|
|
|
|
{
|
|
|
|
gdouble xres, yres;
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
gimp_image_get_resolution (inputs[first_ID].comp.ID, &xres, &yres);
|
2004-11-22 01:45:15 +08:00
|
|
|
gimp_image_set_resolution (image_ID_dst, xres, yres);
|
|
|
|
}
|
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
dst = g_new (guchar, tile_height * width * drawable_dst->bpp);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Do the composition */
|
|
|
|
i = 0;
|
|
|
|
while (i < height)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
|
|
|
scan_lines = (i+tile_height-1 < height) ? tile_height : (height-i);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Get source pixel regions */
|
|
|
|
for (j = 0; j < num_images; j++)
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
|
|
|
gimp_pixel_rgn_get_rect (&(pixel_rgn_src[j]), src[j], 0, i,
|
|
|
|
width, scan_lines);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
2004-12-29 09:05:14 +08:00
|
|
|
if (composevals.do_recompose)
|
2008-10-20 14:04:39 +08:00
|
|
|
gimp_pixel_rgn_get_rect (&pixel_rgn_dst_read, dst, 0, i,
|
|
|
|
width, scan_lines);
|
2004-12-29 09:05:14 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Do the composition */
|
2003-07-02 08:15:09 +08:00
|
|
|
compose_dsc[compose_idx].compose_fun (src,
|
2008-10-20 14:04:39 +08:00
|
|
|
incr_src,
|
|
|
|
width * tile_height,
|
|
|
|
dst,
|
2004-12-29 09:05:14 +08:00
|
|
|
gimp_drawable_has_alpha (layer_ID_dst));
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
/* Set destination pixel region */
|
|
|
|
gimp_pixel_rgn_set_rect (&pixel_rgn_dst, dst, 0, i, width, scan_lines);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
i += scan_lines;
|
2000-02-04 23:12:17 +08:00
|
|
|
|
2004-08-31 03:01:41 +08:00
|
|
|
gimp_progress_update ((gdouble) i / (gdouble) height);
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
for (j = 0; j < num_images; j++)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
|
|
|
g_free (src[j]);
|
2005-09-20 20:33:56 +08:00
|
|
|
if (inputs[j].is_ID)
|
|
|
|
gimp_drawable_detach (drawable_src[j]);
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
g_free (dst);
|
2004-12-29 05:15:45 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_drawable_detach (drawable_dst);
|
2004-12-29 05:15:45 +08:00
|
|
|
|
|
|
|
if (composevals.do_recompose)
|
|
|
|
gimp_drawable_merge_shadow (layer_ID_dst, TRUE);
|
|
|
|
|
2004-01-19 08:16:14 +08:00
|
|
|
gimp_drawable_update (layer_ID_dst, 0, 0,
|
|
|
|
gimp_drawable_width (layer_ID_dst),
|
|
|
|
gimp_drawable_height (layer_ID_dst));
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return image_ID_dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Create an image. Sets layer_ID, drawable and rgn. Returns image_ID */
|
|
|
|
static gint32
|
2003-03-24 23:33:48 +08:00
|
|
|
create_new_image (const gchar *filename,
|
1999-10-16 11:51:45 +08:00
|
|
|
guint width,
|
|
|
|
guint height,
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpImageType gdtype,
|
1999-10-16 11:51:45 +08:00
|
|
|
gint32 *layer_ID,
|
2003-03-24 23:33:48 +08:00
|
|
|
GimpDrawable **drawable,
|
|
|
|
GimpPixelRgn *pixel_rgn)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-03-24 23:33:48 +08:00
|
|
|
gint32 image_ID;
|
2000-08-22 09:26:57 +08:00
|
|
|
GimpImageBaseType gitype;
|
2000-02-04 23:12:17 +08:00
|
|
|
|
2000-08-22 09:26:57 +08:00
|
|
|
if ((gdtype == GIMP_GRAY_IMAGE) || (gdtype == GIMP_GRAYA_IMAGE))
|
|
|
|
gitype = GIMP_GRAY;
|
|
|
|
else if ((gdtype == GIMP_INDEXED_IMAGE) || (gdtype == GIMP_INDEXEDA_IMAGE))
|
|
|
|
gitype = GIMP_INDEXED;
|
1999-10-16 11:51:45 +08:00
|
|
|
else
|
2000-08-22 09:26:57 +08:00
|
|
|
gitype = GIMP_RGB;
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
image_ID = gimp_image_new (width, height, gitype);
|
2004-11-22 01:45:15 +08:00
|
|
|
|
2004-03-16 09:12:21 +08:00
|
|
|
gimp_image_undo_disable (image_ID);
|
2004-11-22 01:45:15 +08:00
|
|
|
gimp_image_set_filename (image_ID, filename);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
*layer_ID = gimp_layer_new (image_ID, _("Background"), width, height,
|
2008-10-20 14:04:39 +08:00
|
|
|
gdtype, 100, GIMP_NORMAL_MODE);
|
2010-09-06 17:40:46 +08:00
|
|
|
gimp_image_insert_layer (image_ID, *layer_ID, -1, 0);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
*drawable = gimp_drawable_get (*layer_ID);
|
|
|
|
gimp_pixel_rgn_init (pixel_rgn, *drawable, 0, 0, (*drawable)->width,
|
2008-10-20 14:04:39 +08:00
|
|
|
(*drawable)->height, TRUE, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
return image_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_rgb (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *red_src = src[0];
|
|
|
|
register const guchar *green_src = src[1];
|
|
|
|
register const guchar *blue_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint red_incr = incr_src[0];
|
|
|
|
gint green_incr = incr_src[1];
|
|
|
|
gint blue_incr = incr_src[2];
|
2003-09-11 23:39:07 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
if ((red_incr == 1) && (green_incr == 1) && (blue_incr == 1))
|
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = *(red_src++);
|
|
|
|
*(rgb_dst++) = *(green_src++);
|
|
|
|
*(rgb_dst++) = *(blue_src++);
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = *red_src; red_src += red_incr;
|
|
|
|
*(rgb_dst++) = *green_src; green_src += green_incr;
|
|
|
|
*(rgb_dst++) = *blue_src; blue_src += blue_incr;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_rgba (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *red_src = src[0];
|
|
|
|
register const guchar *green_src = src[1];
|
|
|
|
register const guchar *blue_src = src[2];
|
|
|
|
register const guchar *alpha_src = src[3];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint red_incr = incr_src[0];
|
|
|
|
gint green_incr = incr_src[1];
|
|
|
|
gint blue_incr = incr_src[2];
|
|
|
|
gint alpha_incr = incr_src[3];
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2000-02-04 23:12:17 +08:00
|
|
|
if ((red_incr == 1) && (green_incr == 1) && (blue_incr == 1) &&
|
|
|
|
(alpha_incr == 1))
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = *(red_src++);
|
|
|
|
*(rgb_dst++) = *(green_src++);
|
|
|
|
*(rgb_dst++) = *(blue_src++);
|
|
|
|
*(rgb_dst++) = *(alpha_src++);
|
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = *red_src; red_src += red_incr;
|
|
|
|
*(rgb_dst++) = *green_src; green_src += green_incr;
|
|
|
|
*(rgb_dst++) = *blue_src; blue_src += blue_incr;
|
|
|
|
*(rgb_dst++) = *alpha_src; alpha_src += alpha_incr;
|
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_hsv (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *hue_src = src[0];
|
|
|
|
register const guchar *sat_src = src[1];
|
|
|
|
register const guchar *val_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint hue_incr = incr_src[0];
|
|
|
|
gint sat_incr = incr_src[1];
|
|
|
|
gint val_incr = incr_src[2];
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
2003-09-11 23:39:07 +08:00
|
|
|
gimp_hsv_to_rgb4 (rgb_dst, (gdouble) *hue_src / 255.0,
|
2008-10-20 14:04:39 +08:00
|
|
|
(gdouble) *sat_src / 255.0,
|
|
|
|
(gdouble) *val_src / 255.0);
|
1999-10-16 11:51:45 +08:00
|
|
|
rgb_dst += 3;
|
|
|
|
hue_src += hue_incr;
|
|
|
|
sat_src += sat_incr;
|
|
|
|
val_src += val_incr;
|
2004-12-29 09:05:14 +08:00
|
|
|
|
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-13 06:53:20 +08:00
|
|
|
static void
|
|
|
|
compose_hsl (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
|
|
|
{
|
|
|
|
register const guchar *hue_src = src[0];
|
|
|
|
register const guchar *sat_src = src[1];
|
|
|
|
register const guchar *lum_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
|
|
|
gint hue_incr = incr_src[0];
|
|
|
|
gint sat_incr = incr_src[1];
|
|
|
|
gint lum_incr = incr_src[2];
|
|
|
|
GimpHSL hsl;
|
|
|
|
GimpRGB rgb;
|
|
|
|
|
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
hsl.h = (gdouble) *hue_src / 255.0;
|
|
|
|
hsl.s = (gdouble) *sat_src / 255.0;
|
|
|
|
hsl.l = (gdouble) *lum_src / 255.0;
|
|
|
|
|
|
|
|
gimp_hsl_to_rgb (&hsl, &rgb);
|
|
|
|
gimp_rgb_get_uchar (&rgb, &(rgb_dst[0]), &(rgb_dst[1]), &(rgb_dst[2]));
|
|
|
|
|
|
|
|
rgb_dst += 3;
|
|
|
|
hue_src += hue_incr;
|
|
|
|
sat_src += sat_incr;
|
|
|
|
lum_src += lum_incr;
|
|
|
|
|
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_cmy (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *cyan_src = src[0];
|
|
|
|
register const guchar *magenta_src = src[1];
|
|
|
|
register const guchar *yellow_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint cyan_incr = incr_src[0];
|
2000-02-04 23:12:17 +08:00
|
|
|
gint magenta_incr = incr_src[1];
|
2003-07-02 19:07:41 +08:00
|
|
|
gint yellow_incr = incr_src[2];
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
if ((cyan_incr == 1) && (magenta_incr == 1) && (yellow_incr == 1))
|
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = 255 - *(cyan_src++);
|
|
|
|
*(rgb_dst++) = 255 - *(magenta_src++);
|
|
|
|
*(rgb_dst++) = 255 - *(yellow_src++);
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (count-- > 0)
|
2008-10-20 14:04:39 +08:00
|
|
|
{
|
|
|
|
*(rgb_dst++) = 255 - *cyan_src;
|
|
|
|
*(rgb_dst++) = 255 - *magenta_src;
|
|
|
|
*(rgb_dst++) = 255 - *yellow_src;
|
|
|
|
cyan_src += cyan_incr;
|
|
|
|
magenta_src += magenta_incr;
|
|
|
|
yellow_src += yellow_incr;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2008-10-20 14:04:39 +08:00
|
|
|
}
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_cmyk (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *cyan_src = src[0];
|
|
|
|
register const guchar *magenta_src = src[1];
|
|
|
|
register const guchar *yellow_src = src[2];
|
|
|
|
register const guchar *black_src = src[3];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2010-07-03 18:57:41 +08:00
|
|
|
gint cyan_incr = incr_src[0];
|
|
|
|
gint magenta_incr = incr_src[1];
|
|
|
|
gint yellow_incr = incr_src[2];
|
|
|
|
gint black_incr = incr_src[3];
|
|
|
|
GimpRGB grgb;
|
|
|
|
|
|
|
|
gimp_rgb_set(&grgb, 0, 0, 0);
|
2000-02-04 23:12:17 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
2010-07-03 18:57:41 +08:00
|
|
|
GimpCMYK gcmyk;
|
|
|
|
guchar r, g, b;
|
2008-10-20 14:04:39 +08:00
|
|
|
|
2010-07-03 18:57:41 +08:00
|
|
|
gimp_cmyk_set_uchar (&gcmyk,
|
|
|
|
*cyan_src, *magenta_src, *yellow_src,
|
|
|
|
*black_src);
|
|
|
|
gimp_cmyk_to_rgb (&gcmyk, &grgb);
|
|
|
|
gimp_rgb_get_uchar (&grgb, &r, &g, &b);
|
2008-10-20 14:04:39 +08:00
|
|
|
|
2010-07-03 18:57:41 +08:00
|
|
|
*rgb_dst++ = r;
|
|
|
|
*rgb_dst++ = g;
|
|
|
|
*rgb_dst++ = b;
|
|
|
|
|
|
|
|
cyan_src += cyan_incr;
|
1999-10-16 11:51:45 +08:00
|
|
|
magenta_src += magenta_incr;
|
2010-07-03 18:57:41 +08:00
|
|
|
yellow_src += yellow_incr;
|
|
|
|
black_src += black_incr;
|
2004-12-29 09:05:14 +08:00
|
|
|
|
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
1999-10-16 11:51:45 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2003-09-11 23:39:07 +08:00
|
|
|
static void
|
|
|
|
compose_lab (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
2003-09-11 23:39:07 +08:00
|
|
|
{
|
|
|
|
register guchar *l_src = src[0];
|
|
|
|
register guchar *a_src = src[1];
|
|
|
|
register guchar *b_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
|
|
|
|
register gint count = numpix;
|
|
|
|
gint l_incr = incr_src[0], a_incr = incr_src[1], b_incr = incr_src[2];
|
|
|
|
|
|
|
|
gdouble red, green, blue;
|
|
|
|
gdouble x, y, z;
|
|
|
|
gdouble l, a, b;
|
|
|
|
|
|
|
|
gdouble p, yyn;
|
|
|
|
gdouble ha, hb, sqyyn;
|
|
|
|
|
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
l = *l_src / 2.550;
|
|
|
|
a = ( *a_src - 128.0 ) / 1.27;
|
|
|
|
b = ( *b_src - 128.0 ) / 1.27;
|
|
|
|
|
|
|
|
p = (l + 16.) / 116.;
|
|
|
|
yyn = p*p*p;
|
|
|
|
|
|
|
|
if (yyn > 0.008856)
|
|
|
|
{
|
|
|
|
y = Yn * yyn;
|
|
|
|
ha = (p + a/500.);
|
|
|
|
x = Xn * ha*ha*ha;
|
|
|
|
hb = (p - b/200.);
|
|
|
|
z = Zn * hb*hb*hb;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
y = Yn * l/903.3;
|
|
|
|
sqyyn = pow(l/903.3,1./3.);
|
|
|
|
ha = a/500./7.787 + sqyyn;
|
|
|
|
x = Xn * ha*ha*ha;
|
|
|
|
hb = sqyyn - b/200./7.787;
|
|
|
|
z = Zn * hb*hb*hb;
|
|
|
|
};
|
|
|
|
|
|
|
|
red = 3.063 * x - 1.393 * y - 0.476 * z;
|
|
|
|
green = -0.969 * x + 1.876 * y + 0.042 * z;
|
|
|
|
blue = 0.068 * x - 0.229 * y + 1.069 * z;
|
|
|
|
|
|
|
|
red = ( red > 0 ) ? red : 0;
|
|
|
|
green = ( green > 0 ) ? green : 0;
|
|
|
|
blue = ( blue > 0 ) ? blue : 0;
|
|
|
|
|
|
|
|
red = ( red < 1.0 ) ? red : 1.0;
|
|
|
|
green = ( green < 1.0 ) ? green : 1.0;
|
|
|
|
blue = ( blue < 1.0 ) ? blue : 1.0;
|
|
|
|
|
|
|
|
rgb_dst[0] = (guchar) ( red * 255.999 );
|
|
|
|
rgb_dst[1] = (guchar) ( green * 255.999 );
|
|
|
|
rgb_dst[2] = (guchar) ( blue * 255.999 );
|
|
|
|
|
|
|
|
rgb_dst += 3;
|
|
|
|
l_src += l_incr;
|
|
|
|
a_src += a_incr;
|
|
|
|
b_src += b_incr;
|
2004-12-29 09:05:14 +08:00
|
|
|
|
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2003-09-11 23:39:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* these are here so the code is more readable and we can use
|
2002-10-24 06:20:23 +08:00
|
|
|
the standart values instead of some scaled and rounded fixpoint values */
|
|
|
|
#define FIX(a) ((int)((a)*256.0*256.0 + 0.5))
|
|
|
|
#define FIXY(a) ((int)((a)*256.0*256.0*255.0/219.0 + 0.5))
|
|
|
|
#define FIXC(a) ((int)((a)*256.0*256.0*255.0/224.0 + 0.5))
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_ycbcr470 (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
2002-10-24 06:20:23 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *y_src = src[0];
|
|
|
|
register const guchar *cb_src = src[1];
|
|
|
|
register const guchar *cr_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint y_incr = incr_src[0];
|
|
|
|
gint cb_incr = incr_src[1];
|
|
|
|
gint cr_incr = incr_src[2];
|
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
int r,g,b,y,cb,cr;
|
2003-09-11 23:39:07 +08:00
|
|
|
y = *y_src - 16;
|
|
|
|
cb= *cb_src - 128;
|
2002-10-24 06:20:23 +08:00
|
|
|
cr= *cr_src - 128;
|
|
|
|
y_src += y_incr;
|
|
|
|
cb_src += cb_incr;
|
|
|
|
cr_src += cr_incr;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
r = (FIXY(1.0)*y + FIXC(1.4022)*cr + FIX(0.5))>>16;
|
|
|
|
g = (FIXY(1.0)*y - FIXC(0.3456)*cb - FIXC(0.7145)*cr + FIX(0.5))>>16;
|
|
|
|
b = (FIXY(1.0)*y + FIXC(1.7710)*cb + FIX(0.5))>>16;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
if(((unsigned)r) > 255) r = ((r>>10)&255)^255;
|
|
|
|
if(((unsigned)g) > 255) g = ((g>>10)&255)^255;
|
|
|
|
if(((unsigned)b) > 255) b = ((b>>10)&255)^255;
|
|
|
|
|
|
|
|
*(rgb_dst++) = r;
|
|
|
|
*(rgb_dst++) = g;
|
|
|
|
*(rgb_dst++) = b;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2002-10-24 06:20:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_ycbcr709 (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
2002-10-24 06:20:23 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *y_src = src[0];
|
|
|
|
register const guchar *cb_src = src[1];
|
|
|
|
register const guchar *cr_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint y_incr = incr_src[0];
|
|
|
|
gint cb_incr = incr_src[1];
|
|
|
|
gint cr_incr = incr_src[2];
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
int r,g,b,y,cb,cr;
|
2003-09-11 23:39:07 +08:00
|
|
|
y = *y_src - 16;
|
|
|
|
cb= *cb_src - 128;
|
2002-10-24 06:20:23 +08:00
|
|
|
cr= *cr_src - 128;
|
|
|
|
y_src += y_incr;
|
|
|
|
cb_src += cb_incr;
|
|
|
|
cr_src += cr_incr;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
r = (FIXY(1.0)*y + FIXC(1.5748)*cr + FIX(0.5))>>16;
|
|
|
|
g = (FIXY(1.0)*y - FIXC(0.1873)*cb - FIXC(0.4681)*cr + FIX(0.5))>>16;
|
|
|
|
b = (FIXY(1.0)*y + FIXC(1.8556)*cb + FIX(0.5))>>16;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
if(((unsigned)r) > 255) r = ((r>>10)&255)^255;
|
|
|
|
if(((unsigned)g) > 255) g = ((g>>10)&255)^255;
|
|
|
|
if(((unsigned)b) > 255) b = ((b>>10)&255)^255;
|
|
|
|
|
|
|
|
*(rgb_dst++) = r;
|
|
|
|
*(rgb_dst++) = g;
|
|
|
|
*(rgb_dst++) = b;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2002-10-24 06:20:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_ycbcr470f (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
2002-10-24 06:20:23 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *y_src = src[0];
|
|
|
|
register const guchar *cb_src = src[1];
|
|
|
|
register const guchar *cr_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint y_incr = incr_src[0];
|
|
|
|
gint cb_incr = incr_src[1];
|
|
|
|
gint cr_incr = incr_src[2];
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
int r,g,b,y,cb,cr;
|
2003-09-11 23:39:07 +08:00
|
|
|
y = *y_src;
|
|
|
|
cb= *cb_src - 128;
|
2002-10-24 06:20:23 +08:00
|
|
|
cr= *cr_src - 128;
|
|
|
|
y_src += y_incr;
|
|
|
|
cb_src += cb_incr;
|
|
|
|
cr_src += cr_incr;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
r = (FIX(1.0)*y + FIX(1.4022)*cr + FIX(0.5))>>16;
|
|
|
|
g = (FIX(1.0)*y - FIX(0.3456)*cb - FIX(0.7145)*cr + FIX(0.5))>>16;
|
|
|
|
b = (FIX(1.0)*y + FIX(1.7710)*cb + FIX(0.5))>>16;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
if(((unsigned)r) > 255) r = ((r>>10)&255)^255;
|
|
|
|
if(((unsigned)g) > 255) g = ((g>>10)&255)^255;
|
|
|
|
if(((unsigned)b) > 255) b = ((b>>10)&255)^255;
|
|
|
|
|
|
|
|
*(rgb_dst++) = r;
|
|
|
|
*(rgb_dst++) = g;
|
|
|
|
*(rgb_dst++) = b;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2002-10-24 06:20:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2003-07-02 19:07:41 +08:00
|
|
|
compose_ycbcr709f (guchar **src,
|
|
|
|
gint *incr_src,
|
|
|
|
gint numpix,
|
2004-12-29 09:05:14 +08:00
|
|
|
guchar *dst,
|
|
|
|
gboolean dst_has_alpha)
|
2002-10-24 06:20:23 +08:00
|
|
|
{
|
2003-07-02 08:15:09 +08:00
|
|
|
register const guchar *y_src = src[0];
|
|
|
|
register const guchar *cb_src = src[1];
|
|
|
|
register const guchar *cr_src = src[2];
|
|
|
|
register guchar *rgb_dst = dst;
|
|
|
|
register gint count = numpix;
|
2003-07-02 19:07:41 +08:00
|
|
|
gint y_incr = incr_src[0];
|
|
|
|
gint cb_incr = incr_src[1];
|
|
|
|
gint cr_incr = incr_src[2];
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
while (count-- > 0)
|
|
|
|
{
|
|
|
|
int r,g,b,y,cb,cr;
|
2003-09-11 23:39:07 +08:00
|
|
|
y = *y_src;
|
|
|
|
cb= *cb_src - 128;
|
2002-10-24 06:20:23 +08:00
|
|
|
cr= *cr_src - 128;
|
|
|
|
y_src += y_incr;
|
|
|
|
cb_src += cb_incr;
|
|
|
|
cr_src += cr_incr;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
r = (FIX(1.0)*y + FIX(1.5748)*cr + FIX(0.5))>>16;
|
|
|
|
g = (FIX(1.0)*y - FIX(0.1873)*cb - FIX(0.4681)*cr + FIX(0.5))>>16;
|
|
|
|
b = (FIX(1.0)*y + FIX(1.8556)*cb + FIX(0.5))>>16;
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2002-10-24 06:20:23 +08:00
|
|
|
if(((unsigned)r) > 255) r = ((r>>10)&255)^255;
|
|
|
|
if(((unsigned)g) > 255) g = ((g>>10)&255)^255;
|
|
|
|
if(((unsigned)b) > 255) b = ((b>>10)&255)^255;
|
|
|
|
|
|
|
|
*(rgb_dst++) = r;
|
|
|
|
*(rgb_dst++) = g;
|
|
|
|
*(rgb_dst++) = b;
|
2004-12-29 09:05:14 +08:00
|
|
|
if (dst_has_alpha)
|
|
|
|
rgb_dst++;
|
2002-10-24 06:20:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-03-24 23:33:48 +08:00
|
|
|
static gboolean
|
2003-07-02 08:15:09 +08:00
|
|
|
compose_dialog (const gchar *compose_type,
|
|
|
|
gint32 drawable_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-22 22:27:42 +08:00
|
|
|
GtkWidget *dialog;
|
|
|
|
GtkWidget *main_vbox;
|
|
|
|
GtkWidget *frame;
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *combo;
|
|
|
|
GtkWidget *table;
|
|
|
|
GtkSizeGroup *size_group;
|
|
|
|
gint32 *layer_list;
|
|
|
|
gint nlayers;
|
|
|
|
gint j;
|
|
|
|
gboolean run;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Check default compose type */
|
2005-09-25 01:34:09 +08:00
|
|
|
composeint.compose_idx = 0;
|
2003-09-11 23:39:07 +08:00
|
|
|
for (j = 0; j < G_N_ELEMENTS (compose_dsc); j++)
|
2000-02-04 23:12:17 +08:00
|
|
|
{
|
2001-08-30 01:48:28 +08:00
|
|
|
if (g_ascii_strcasecmp (compose_type, compose_dsc[j].compose_type) == 0)
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
2005-09-25 01:34:09 +08:00
|
|
|
composeint.compose_idx = j;
|
2005-09-20 20:33:56 +08:00
|
|
|
break;
|
|
|
|
}
|
2000-02-04 23:12:17 +08:00
|
|
|
}
|
2005-09-22 22:27:42 +08:00
|
|
|
|
1999-06-06 05:20:19 +08:00
|
|
|
/* Save original image width/height */
|
2000-02-04 23:12:17 +08:00
|
|
|
composeint.width = gimp_drawable_width (drawable_ID);
|
1999-06-06 05:20:19 +08:00
|
|
|
composeint.height = gimp_drawable_height (drawable_ID);
|
|
|
|
|
2005-08-14 02:29:14 +08:00
|
|
|
gimp_ui_init (PLUG_IN_BINARY, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2010-07-09 18:27:36 +08:00
|
|
|
layer_list = gimp_image_get_layers (gimp_item_get_image (drawable_ID),
|
2004-08-28 20:10:48 +08:00
|
|
|
&nlayers);
|
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
dialog = gimp_dialog_new (_("Compose"), PLUG_IN_BINARY,
|
|
|
|
NULL, 0,
|
|
|
|
gimp_standard_help_func, COMPOSE_PROC,
|
2000-01-07 00:40:17 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
2000-01-07 00:40:17 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
NULL);
|
2000-01-07 00:40:17 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
2005-08-15 19:09:18 +08:00
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
2005-02-09 04:40:33 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
g_signal_connect (dialog, "response",
|
2005-09-20 20:33:56 +08:00
|
|
|
G_CALLBACK (check_response),
|
|
|
|
NULL);
|
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gimp_window_set_transient (GTK_WINDOW (dialog));
|
|
|
|
|
|
|
|
main_vbox = gtk_vbox_new (FALSE, 12);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
|
2009-07-16 00:57:12 +08:00
|
|
|
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
|
|
|
|
main_vbox);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_show (main_vbox);
|
|
|
|
|
|
|
|
/* Compose type combo */
|
2005-09-06 05:40:29 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
frame = gimp_frame_new (_("Compose Channels"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 6);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), hbox);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
label = gtk_label_new_with_mnemonic (_("Color _model:"));
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
gtk_size_group_add_widget (size_group, label);
|
|
|
|
g_object_unref (size_group);
|
|
|
|
|
2005-09-28 04:51:29 +08:00
|
|
|
combo = g_object_new (GIMP_TYPE_INT_COMBO_BOX, NULL);
|
2005-09-22 22:27:42 +08:00
|
|
|
for (j = 0; j < G_N_ELEMENTS (compose_dsc); j++)
|
|
|
|
{
|
2005-09-25 01:34:09 +08:00
|
|
|
gchar *label = g_strdup (gettext (compose_dsc[j].compose_type));
|
|
|
|
gchar *l;
|
|
|
|
|
|
|
|
for (l = label; *l; l++)
|
|
|
|
if (*l == '-' || *l == '_')
|
|
|
|
*l = ' ';
|
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gimp_int_combo_box_append (GIMP_INT_COMBO_BOX (combo),
|
2005-09-25 01:34:09 +08:00
|
|
|
GIMP_INT_STORE_LABEL, label,
|
|
|
|
GIMP_INT_STORE_VALUE, j,
|
2005-09-22 22:27:42 +08:00
|
|
|
-1);
|
2005-09-25 01:34:09 +08:00
|
|
|
g_free (label);
|
2005-09-22 22:27:42 +08:00
|
|
|
}
|
2006-04-06 16:49:32 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), combo, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (combo);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
/* Channel representation table */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
frame = gimp_frame_new (_("Channel Representations"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (frame);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
vbox = gtk_vbox_new (FALSE, 6);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
|
|
|
gtk_widget_show (vbox);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
table = gtk_table_new (MAX_COMPOSE_IMAGES, 4, FALSE);
|
2004-05-19 05:21:23 +08:00
|
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
|
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (table);
|
|
|
|
|
|
|
|
for (j = 0; j < MAX_COMPOSE_IMAGES; j++)
|
2000-01-11 23:48:00 +08:00
|
|
|
{
|
2005-09-22 22:27:42 +08:00
|
|
|
GtkWidget *image;
|
|
|
|
GtkWidget *label;
|
2005-09-20 20:33:56 +08:00
|
|
|
GtkWidget *combo;
|
|
|
|
GtkObject *scale;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GdkPixbuf *ico;
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
hbox = gtk_hbox_new (FALSE, 6);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), hbox, 0, 1, j, j + 1,
|
2003-03-24 23:33:48 +08:00
|
|
|
GTK_FILL, GTK_FILL, 0, 0);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_show (hbox);
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_size_group_add_widget (size_group, hbox);
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
composeint.channel_icon[j] = image = gtk_image_new ();
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (image);
|
|
|
|
|
|
|
|
composeint.channel_label[j] = label = gtk_label_new_with_mnemonic ("");
|
2004-05-19 05:21:23 +08:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
2000-01-11 23:48:00 +08:00
|
|
|
gtk_widget_show (label);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-04-06 16:49:32 +08:00
|
|
|
if (composeint.compose_idx >= 0 &&
|
|
|
|
nlayers >= compose_dsc[composeint.compose_idx].num_images &&
|
|
|
|
j < nlayers)
|
|
|
|
{
|
|
|
|
composeint.selected[j].comp.ID = layer_list[j];
|
|
|
|
}
|
2004-08-28 20:10:48 +08:00
|
|
|
else
|
2006-04-06 16:49:32 +08:00
|
|
|
{
|
|
|
|
composeint.selected[j].comp.ID = drawable_ID;
|
|
|
|
}
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
composeint.selected[j].is_ID = TRUE;
|
2004-04-22 00:50:13 +08:00
|
|
|
|
|
|
|
combo = gimp_drawable_combo_box_new (check_gray, NULL);
|
2005-09-22 22:27:42 +08:00
|
|
|
composeint.channel_menu[j] = combo;
|
2004-04-22 00:50:13 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
ico = gtk_widget_render_icon (dialog,
|
2005-09-20 20:33:56 +08:00
|
|
|
GIMP_STOCK_CHANNEL_GRAY,
|
|
|
|
GTK_ICON_SIZE_BUTTON, NULL);
|
|
|
|
model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo));
|
|
|
|
gtk_list_store_append (GTK_LIST_STORE (model), &iter);
|
|
|
|
gtk_list_store_set (GTK_LIST_STORE (model), &iter,
|
|
|
|
GIMP_INT_STORE_VALUE, -1,
|
2005-09-22 22:27:42 +08:00
|
|
|
GIMP_INT_STORE_LABEL, _("Mask value"),
|
2005-09-20 20:33:56 +08:00
|
|
|
GIMP_INT_STORE_PIXBUF, ico,
|
|
|
|
-1);
|
|
|
|
g_object_unref (ico);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_table_attach (GTK_TABLE (table), combo, 1, 2, j, j + 1,
|
2008-10-20 14:04:39 +08:00
|
|
|
GTK_EXPAND | GTK_FILL, GTK_EXPAND | GTK_FILL, 0, 0);
|
2004-04-22 00:50:13 +08:00
|
|
|
gtk_widget_show (combo);
|
2000-01-11 23:48:00 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo);
|
2005-09-20 20:33:56 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
scale = gimp_color_scale_entry_new (GTK_TABLE (table), 2, j, NULL,
|
|
|
|
100, 4,
|
|
|
|
255.0, 0.0, 255.0, 1.0, 10.0, 0,
|
2005-09-20 20:33:56 +08:00
|
|
|
NULL, NULL);
|
2005-09-22 22:27:42 +08:00
|
|
|
composeint.color_scales[j] = GIMP_SCALE_ENTRY_SCALE (scale);
|
|
|
|
composeint.color_spins[j] = GIMP_SCALE_ENTRY_SPINBUTTON (scale);
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
gtk_widget_set_sensitive (composeint.color_scales[j], FALSE);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_set_sensitive (composeint.color_spins[j], FALSE);
|
2005-09-20 20:33:56 +08:00
|
|
|
|
|
|
|
g_signal_connect (scale, "value-changed",
|
|
|
|
G_CALLBACK (scale_callback),
|
|
|
|
&composeint.selected[j]);
|
|
|
|
|
|
|
|
/* This has to be connected last otherwise it will emit before
|
|
|
|
* combo_callback has any scale and spinbutton to work with
|
|
|
|
*/
|
|
|
|
gimp_int_combo_box_connect (GIMP_INT_COMBO_BOX (combo),
|
|
|
|
composeint.selected[j].comp.ID,
|
|
|
|
G_CALLBACK (combo_callback),
|
|
|
|
GINT_TO_POINTER (j));
|
2000-01-11 23:48:00 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
g_free (layer_list);
|
2003-09-11 23:39:07 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
/* Calls the combo callback and sets icons, labels and sensitivity */
|
|
|
|
gimp_int_combo_box_connect (GIMP_INT_COMBO_BOX (combo),
|
2005-09-25 01:34:09 +08:00
|
|
|
composeint.compose_idx,
|
2005-09-22 22:27:42 +08:00
|
|
|
G_CALLBACK (type_combo_callback),
|
|
|
|
NULL);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_show (dialog);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
run = (gimp_dialog_run (GIMP_DIALOG (dialog)) == GTK_RESPONSE_OK);
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_destroy (dialog);
|
2003-11-06 23:27:05 +08:00
|
|
|
|
|
|
|
if (run)
|
|
|
|
{
|
|
|
|
gint j;
|
|
|
|
|
|
|
|
for (j = 0; j < MAX_COMPOSE_IMAGES; j++)
|
2005-09-20 20:33:56 +08:00
|
|
|
{
|
|
|
|
composevals.inputs[j].is_ID = composeint.selected[j].is_ID;
|
2005-09-22 22:27:42 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
if (composevals.inputs[j].is_ID)
|
|
|
|
composevals.inputs[j].comp.ID = composeint.selected[j].comp.ID;
|
|
|
|
else
|
|
|
|
composevals.inputs[j].comp.val = composeint.selected[j].comp.val;
|
|
|
|
}
|
2003-11-06 23:27:05 +08:00
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
strcpy (composevals.compose_type,
|
|
|
|
compose_dsc[composeint.compose_idx].compose_type);
|
2003-11-06 23:27:05 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
return run;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Compose interface functions */
|
|
|
|
|
2003-03-24 23:33:48 +08:00
|
|
|
static gboolean
|
1999-10-16 11:51:45 +08:00
|
|
|
check_gray (gint32 image_id,
|
|
|
|
gint32 drawable_id,
|
1997-11-25 06:05:25 +08:00
|
|
|
gpointer data)
|
|
|
|
|
|
|
|
{
|
2000-08-22 09:26:57 +08:00
|
|
|
return ((gimp_image_base_type (image_id) == GIMP_GRAY) &&
|
2008-10-20 14:04:39 +08:00
|
|
|
(gimp_image_width (image_id) == composeint.width) &&
|
|
|
|
(gimp_image_height (image_id) == composeint.height));
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
static void
|
|
|
|
check_response (GtkWidget *dialog,
|
|
|
|
gint response,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
switch (response)
|
|
|
|
{
|
|
|
|
case GTK_RESPONSE_OK:
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gint nb = 0;
|
|
|
|
gboolean has_image = FALSE;
|
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
nb = compose_dsc[composeint.compose_idx].num_images;
|
2005-09-20 20:33:56 +08:00
|
|
|
|
|
|
|
for (i = 0; i < nb; i++)
|
|
|
|
{
|
|
|
|
if (composeint.selected[i].is_ID)
|
|
|
|
{
|
|
|
|
has_image = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! has_image)
|
|
|
|
{
|
|
|
|
GtkWidget *d;
|
|
|
|
|
|
|
|
g_signal_stop_emission_by_name (dialog, "response");
|
|
|
|
d = gtk_message_dialog_new (GTK_WINDOW (dialog),
|
2005-09-22 22:27:42 +08:00
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT |
|
|
|
|
GTK_DIALOG_MODAL,
|
2005-09-20 20:33:56 +08:00
|
|
|
GTK_MESSAGE_ERROR,
|
|
|
|
GTK_BUTTONS_CLOSE,
|
|
|
|
_("At least one image is needed to compose"));
|
2005-09-22 22:27:42 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
gtk_dialog_run (GTK_DIALOG (d));
|
|
|
|
gtk_widget_destroy (d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
combo_callback (GimpIntComboBox *widget,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gint id;
|
|
|
|
gint n;
|
|
|
|
|
|
|
|
gimp_int_combo_box_get_active (GIMP_INT_COMBO_BOX (widget), &id);
|
|
|
|
n = GPOINTER_TO_INT (data);
|
|
|
|
|
|
|
|
if (id == -1)
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (composeint.color_scales[n], TRUE);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_set_sensitive (composeint.color_spins[n], TRUE);
|
|
|
|
|
|
|
|
composeint.selected[n].is_ID = FALSE;
|
2005-09-20 20:33:56 +08:00
|
|
|
composeint.selected[n].comp.val =
|
|
|
|
gtk_range_get_value (GTK_RANGE (composeint.color_scales[n]));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_widget_set_sensitive (composeint.color_scales[n], FALSE);
|
2005-09-22 22:27:42 +08:00
|
|
|
gtk_widget_set_sensitive (composeint.color_spins[n], FALSE);
|
|
|
|
|
|
|
|
composeint.selected[n].is_ID = TRUE;
|
2005-09-20 20:33:56 +08:00
|
|
|
composeint.selected[n].comp.ID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
scale_callback (GtkAdjustment *adj,
|
|
|
|
ComposeInput *input)
|
|
|
|
{
|
|
|
|
input->comp.val = gtk_adjustment_get_value (adj);
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2005-09-22 22:27:42 +08:00
|
|
|
type_combo_callback (GimpIntComboBox *combo,
|
|
|
|
gpointer data)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-25 01:34:09 +08:00
|
|
|
if (gimp_int_combo_box_get_active (combo, &composeint.compose_idx))
|
1999-10-16 11:51:45 +08:00
|
|
|
{
|
2007-01-23 16:18:13 +08:00
|
|
|
gboolean combo4;
|
|
|
|
gboolean scale4;
|
|
|
|
gint compose_idx;
|
|
|
|
gint j;
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2005-09-25 01:34:09 +08:00
|
|
|
compose_idx = composeint.compose_idx;
|
2003-03-24 23:33:48 +08:00
|
|
|
|
1999-10-16 11:51:45 +08:00
|
|
|
for (j = 0; j < MAX_COMPOSE_IMAGES; j++)
|
2003-03-24 23:33:48 +08:00
|
|
|
{
|
2007-01-23 16:18:13 +08:00
|
|
|
GtkWidget *label = composeint.channel_label[j];
|
|
|
|
GtkWidget *image = composeint.channel_icon[j];
|
|
|
|
const gchar *text = compose_dsc[compose_idx].channel_name[j];
|
|
|
|
const gchar *icon = compose_dsc[compose_idx].channel_icon[j];
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2007-01-23 16:18:13 +08:00
|
|
|
gtk_label_set_text_with_mnemonic (GTK_LABEL (label),
|
|
|
|
text ? gettext (text) : "");
|
2003-03-24 23:33:48 +08:00
|
|
|
|
2007-01-23 16:18:13 +08:00
|
|
|
if (icon)
|
|
|
|
{
|
|
|
|
gtk_image_set_from_stock (GTK_IMAGE (image),
|
|
|
|
icon, GTK_ICON_SIZE_BUTTON);
|
|
|
|
gtk_widget_show (image);
|
|
|
|
}
|
2005-09-22 22:27:42 +08:00
|
|
|
else
|
2007-01-23 16:18:13 +08:00
|
|
|
{
|
|
|
|
gtk_image_clear (GTK_IMAGE (image));
|
|
|
|
gtk_widget_hide (image);
|
|
|
|
}
|
2003-03-24 23:33:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set sensitivity of last menu */
|
2005-09-20 20:33:56 +08:00
|
|
|
combo4 = (compose_dsc[compose_idx].channel_name[3] != NULL);
|
|
|
|
gtk_widget_set_sensitive (composeint.channel_menu[3], combo4);
|
2005-09-22 22:27:42 +08:00
|
|
|
|
2005-09-20 20:33:56 +08:00
|
|
|
scale4 = combo4 && !composeint.selected[3].is_ID;
|
|
|
|
gtk_widget_set_sensitive (composeint.color_scales[3], scale4);
|
|
|
|
gtk_widget_set_sensitive (composeint.color_spins[3], scale4);
|
2003-03-24 23:33:48 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|