1999-12-27 20:02:07 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2003-07-03 08:47:26 +08:00
|
|
|
* Copyright (C) 1995-2003 Peter Mattis and Spencer Kimball
|
2000-05-31 14:15:06 +08:00
|
|
|
*
|
|
|
|
* gimplayer_pdb.c
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-01-25 18:26:47 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
1999-12-27 20:02:07 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
2000-06-01 22:59:22 +08:00
|
|
|
* Lesser General Public License for more details.
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
1999-12-27 20:02:07 +08:00
|
|
|
*/
|
|
|
|
|
2007-01-09 18:52:47 +08:00
|
|
|
/* NOTE: This file is auto-generated by pdbgen.pl */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2002-05-14 07:30:23 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2000-06-01 22:59:22 +08:00
|
|
|
#include "gimp.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2010-07-07 17:43:10 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION: gimplayer
|
|
|
|
* @title: gimplayer
|
|
|
|
* @short_description: Operations on a single layer.
|
|
|
|
*
|
|
|
|
* Operations on a single layer.
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* _gimp_layer_new:
|
|
|
|
* @image_ID: The image to which to add the layer.
|
|
|
|
* @width: The layer width.
|
|
|
|
* @height: The layer height.
|
|
|
|
* @type: The layer type.
|
|
|
|
* @name: The layer name.
|
|
|
|
* @opacity: The layer opacity.
|
|
|
|
* @mode: The layer combination mode.
|
|
|
|
*
|
|
|
|
* Create a new layer.
|
|
|
|
*
|
|
|
|
* This procedure creates a new layer with the specified width, height,
|
|
|
|
* and type. Name, opacity, and mode are also supplied parameters. The
|
|
|
|
* new layer still needs to be added to the image, as this is not
|
2010-09-06 06:03:29 +08:00
|
|
|
* automatic. Add the new layer with the gimp_image_insert_layer()
|
2000-08-25 07:06:53 +08:00
|
|
|
* command. Other attributes such as layer mask modes, and offsets
|
|
|
|
* should be set with explicit procedure calls.
|
|
|
|
*
|
|
|
|
* Returns: The newly created layer.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
1997-11-25 06:05:25 +08:00
|
|
|
gint32
|
2000-06-01 22:59:22 +08:00
|
|
|
_gimp_layer_new (gint32 image_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
GimpImageType type,
|
|
|
|
const gchar *name,
|
|
|
|
gdouble opacity,
|
|
|
|
GimpLayerModeEffects mode)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
gint32 layer_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-new",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_INT32, width,
|
|
|
|
GIMP_PDB_INT32, height,
|
|
|
|
GIMP_PDB_INT32, type,
|
|
|
|
GIMP_PDB_STRING, name,
|
|
|
|
GIMP_PDB_FLOAT, opacity,
|
|
|
|
GIMP_PDB_INT32, mode,
|
|
|
|
GIMP_PDB_END);
|
2000-08-03 09:35:28 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
1997-11-25 06:05:25 +08:00
|
|
|
layer_ID = return_vals[1].data.d_layer;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return layer_ID;
|
|
|
|
}
|
|
|
|
|
2008-08-08 00:09:39 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_new_from_visible:
|
|
|
|
* @image_ID: The source image from where the content is copied.
|
|
|
|
* @dest_image_ID: The destination image to which to add the layer.
|
|
|
|
* @name: The layer name.
|
|
|
|
*
|
|
|
|
* Create a new layer from what is visible in an image.
|
|
|
|
*
|
|
|
|
* This procedure creates a new layer from what is visible in the given
|
|
|
|
* image. The new layer still needs to be added to the destination
|
|
|
|
* image, as this is not automatic. Add the new layer with the
|
2010-09-06 06:03:29 +08:00
|
|
|
* gimp_image_insert_layer() command. Other attributes such as layer
|
|
|
|
* mask modes, and offsets should be set with explicit procedure calls.
|
2008-08-08 00:09:39 +08:00
|
|
|
*
|
|
|
|
* Returns: The newly created layer.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.6
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2008-08-08 00:09:39 +08:00
|
|
|
gint32
|
|
|
|
gimp_layer_new_from_visible (gint32 image_ID,
|
|
|
|
gint32 dest_image_ID,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gint32 layer_ID = -1;
|
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-new-from-visible",
|
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_IMAGE, dest_image_ID,
|
|
|
|
GIMP_PDB_STRING, name,
|
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
layer_ID = return_vals[1].data.d_layer;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return layer_ID;
|
|
|
|
}
|
|
|
|
|
2003-12-09 01:26:55 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_new_from_drawable:
|
|
|
|
* @drawable_ID: The source drawable from where the new layer is copied.
|
|
|
|
* @dest_image_ID: The destination image to which to add the layer.
|
|
|
|
*
|
|
|
|
* Create a new layer by copying an existing drawable.
|
|
|
|
*
|
|
|
|
* This procedure creates a new layer as a copy of the specified
|
|
|
|
* drawable. The new layer still needs to be added to the image, as
|
|
|
|
* this is not automatic. Add the new layer with the
|
2010-09-06 06:03:29 +08:00
|
|
|
* gimp_image_insert_layer() command. Other attributes such as layer
|
|
|
|
* mask modes, and offsets should be set with explicit procedure calls.
|
2003-12-09 01:26:55 +08:00
|
|
|
*
|
|
|
|
* Returns: The newly copied layer.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-09 01:26:55 +08:00
|
|
|
gint32
|
|
|
|
gimp_layer_new_from_drawable (gint32 drawable_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint32 dest_image_ID)
|
2003-12-09 01:26:55 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gint32 layer_copy_ID = -1;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-new-from-drawable",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_DRAWABLE, drawable_ID,
|
|
|
|
GIMP_PDB_IMAGE, dest_image_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-09 01:26:55 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
layer_copy_ID = return_vals[1].data.d_layer;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return layer_copy_ID;
|
|
|
|
}
|
|
|
|
|
2010-09-16 03:18:47 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_group_new:
|
|
|
|
* @image_ID: The image to which to add the layer group.
|
|
|
|
*
|
|
|
|
* Create a new layer group.
|
|
|
|
*
|
|
|
|
* This procedure creates a new layer group. Attributes such as layer
|
|
|
|
* mode and opacity should be set with explicit procedure calls. Add
|
|
|
|
* the new layer group (which is a kind of layer) with the
|
|
|
|
* gimp_image_insert_layer() command.
|
|
|
|
*
|
|
|
|
* Returns: The newly created layer group.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.8
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2010-09-16 03:18:47 +08:00
|
|
|
gint32
|
|
|
|
gimp_layer_group_new (gint32 image_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gint32 layer_group_ID = -1;
|
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-group-new",
|
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_IMAGE, image_ID,
|
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
layer_group_ID = return_vals[1].data.d_layer;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return layer_group_ID;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* _gimp_layer_copy:
|
|
|
|
* @layer_ID: The layer to copy.
|
|
|
|
* @add_alpha: Add an alpha channel to the copied layer.
|
|
|
|
*
|
|
|
|
* Copy a layer.
|
|
|
|
*
|
|
|
|
* This procedure copies the specified layer and returns the copy. The
|
|
|
|
* newly copied layer is for use within the original layer's image. It
|
|
|
|
* should not be subsequently added to any other image. The copied
|
|
|
|
* layer can optionally have an added alpha channel. This is useful if
|
|
|
|
* the background layer in an image is being copied and added to the
|
|
|
|
* same image.
|
|
|
|
*
|
|
|
|
* Returns: The newly copied layer.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
1997-11-25 06:05:25 +08:00
|
|
|
gint32
|
2000-06-01 22:59:22 +08:00
|
|
|
_gimp_layer_copy (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gboolean add_alpha)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
gint32 layer_copy_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-copy",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, add_alpha,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-01 22:59:22 +08:00
|
|
|
layer_copy_ID = return_vals[1].data.d_layer;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
2000-06-01 22:59:22 +08:00
|
|
|
return layer_copy_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-09 01:26:55 +08:00
|
|
|
* gimp_layer_add_alpha:
|
|
|
|
* @layer_ID: The layer.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* Add an alpha channel to the layer if it doesn't already have one.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* This procedure adds an additional component to the specified layer
|
|
|
|
* if it does not already possess an alpha channel. An alpha channel
|
2007-09-16 03:55:35 +08:00
|
|
|
* makes it possible to clear and erase to transparency, instead of the
|
|
|
|
* background color. This transforms layers of type RGB to RGBA, GRAY
|
|
|
|
* to GRAYA, and INDEXED to INDEXEDA.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-09 01:26:55 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_add_alpha (gint32 layer_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2003-12-09 01:26:55 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-add-alpha",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-12-09 01:26:55 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
2000-06-01 22:59:22 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-06-01 22:59:22 +08:00
|
|
|
|
2003-12-09 01:26:55 +08:00
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2007-09-16 03:55:35 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_flatten:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
|
|
|
* Remove the alpha channel from the layer if it has one.
|
|
|
|
*
|
|
|
|
* This procedure removes the alpha channel from a layer, blending all
|
|
|
|
* (partially) transparent pixels in the layer against the background
|
|
|
|
* color. This transforms layers of type RGBA to RGB, GRAYA to GRAY,
|
|
|
|
* and INDEXEDA to INDEXED.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.4
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2007-09-16 03:55:35 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_flatten (gint32 layer_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-flatten",
|
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_scale:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @new_width: New layer width.
|
|
|
|
* @new_height: New layer height.
|
|
|
|
* @local_origin: Use a local origin (as opposed to the image origin).
|
|
|
|
*
|
2008-09-24 16:28:16 +08:00
|
|
|
* Scale the layer using the default interpolation method.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure scales the layer so that its new width and height are
|
2006-09-14 01:56:40 +08:00
|
|
|
* equal to the supplied parameters. The 'local-origin' parameter
|
2000-08-25 07:06:53 +08:00
|
|
|
* specifies whether to scale from the center of the layer, or from the
|
|
|
|
* image origin. This operation only works if the layer has been added
|
2010-09-17 02:33:56 +08:00
|
|
|
* to an image. The interpolation method used can be set with
|
|
|
|
* gimp_context_set_interpolation().
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_layer_scale (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gboolean local_origin)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-scale",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, new_width,
|
|
|
|
GIMP_PDB_INT32, new_height,
|
|
|
|
GIMP_PDB_INT32, local_origin,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
2008-09-24 16:28:16 +08:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_scale_full:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @new_width: New layer width.
|
|
|
|
* @new_height: New layer height.
|
|
|
|
* @local_origin: Use a local origin (as opposed to the image origin).
|
|
|
|
* @interpolation: Type of interpolation.
|
|
|
|
*
|
2010-09-17 02:33:56 +08:00
|
|
|
* Deprecated: Use gimp_layer_scale() instead.
|
2008-09-24 16:28:16 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.6
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2008-09-24 16:28:16 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_scale_full (gint32 layer_ID,
|
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gboolean local_origin,
|
|
|
|
GimpInterpolationType interpolation)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-scale-full",
|
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, new_width,
|
|
|
|
GIMP_PDB_INT32, new_height,
|
|
|
|
GIMP_PDB_INT32, local_origin,
|
|
|
|
GIMP_PDB_INT32, interpolation,
|
|
|
|
GIMP_PDB_END);
|
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_resize:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @new_width: New layer width.
|
|
|
|
* @new_height: New layer height.
|
2004-05-29 19:29:37 +08:00
|
|
|
* @offx: x offset between upper left corner of old and new layers: (old - new).
|
|
|
|
* @offy: y offset between upper left corner of old and new layers: (old - new).
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Resize the layer to the specified extents.
|
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure resizes the layer so that its new width and height
|
2000-08-25 07:06:53 +08:00
|
|
|
* are equal to the supplied parameters. Offsets are also provided
|
|
|
|
* which describe the position of the previous layer's content. This
|
|
|
|
* operation only works if the layer has been added to an image.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_layer_resize (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint new_width,
|
|
|
|
gint new_height,
|
|
|
|
gint offx,
|
|
|
|
gint offy)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-resize",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, new_width,
|
|
|
|
GIMP_PDB_INT32, new_height,
|
|
|
|
GIMP_PDB_INT32, offx,
|
|
|
|
GIMP_PDB_INT32, offy,
|
|
|
|
GIMP_PDB_END);
|
2003-10-07 05:22:09 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_resize_to_image_size:
|
|
|
|
* @layer_ID: The layer to resize.
|
|
|
|
*
|
|
|
|
* Resize a layer to the image size.
|
|
|
|
*
|
|
|
|
* This procedure resizes the layer so that it's new width and height
|
|
|
|
* are equal to the width and height of its image container.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-10-07 05:22:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_resize_to_image_size (gint32 layer_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-resize-to-image-size",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_translate:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @offx: Offset in x direction.
|
|
|
|
* @offy: Offset in y direction.
|
|
|
|
*
|
|
|
|
* Translate the layer by the specified offsets.
|
|
|
|
*
|
|
|
|
* This procedure translates the layer by the amounts specified in the
|
|
|
|
* x and y arguments. These can be negative, and are considered offsets
|
|
|
|
* from the current position. This command only works if the layer has
|
|
|
|
* been added to an image. All additional layers contained in the image
|
|
|
|
* which have the linked flag set to TRUE w ill also be translated by
|
|
|
|
* the specified offsets.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_layer_translate (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint offx,
|
|
|
|
gint offy)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-translate",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, offx,
|
|
|
|
GIMP_PDB_INT32, offy,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-09 01:26:55 +08:00
|
|
|
* gimp_layer_set_offsets:
|
2000-08-25 07:06:53 +08:00
|
|
|
* @layer_ID: The layer.
|
2003-12-09 01:26:55 +08:00
|
|
|
* @offx: Offset in x direction.
|
|
|
|
* @offy: Offset in y direction.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* Set the layer offsets.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* This procedure sets the offsets for the specified layer. The offsets
|
|
|
|
* are relative to the image origin and can be any values. This
|
|
|
|
* operation is valid only on layers which have been added to an image.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2003-12-09 01:26:55 +08:00
|
|
|
gimp_layer_set_offsets (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint offx,
|
|
|
|
gint offy)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-offsets",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, offx,
|
|
|
|
GIMP_PDB_INT32, offy,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-09 01:26:55 +08:00
|
|
|
* gimp_layer_create_mask:
|
|
|
|
* @layer_ID: The layer to which to add the mask.
|
|
|
|
* @mask_type: The type of mask.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2013-06-22 15:18:47 +08:00
|
|
|
* Create a layer mask for the specified layer.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2013-09-30 17:20:49 +08:00
|
|
|
* This procedure creates a layer mask for the specified layer.
|
|
|
|
* Layer masks serve as an additional alpha channel for a layer.
|
|
|
|
* Different types of masks are allowed for initialisation:
|
|
|
|
* - white mask (leaves the layer fully visible);
|
|
|
|
* - black mask (gives the layer complete transparency);
|
|
|
|
* - the layer's alpha channel (either a copy, or a transfer, which
|
|
|
|
* leaves the layer fully visible, but which may be more useful than a
|
|
|
|
* white mask);
|
|
|
|
* - the current selection;
|
|
|
|
* - a grayscale copy of the layer;
|
|
|
|
* - or a copy of the active channel.
|
2013-10-05 14:48:39 +08:00
|
|
|
*
|
2013-09-30 17:20:49 +08:00
|
|
|
* The layer mask still needs to be added to the layer. This can be
|
|
|
|
* done with a call to gimp_layer_add_mask().
|
2013-10-05 14:48:39 +08:00
|
|
|
*
|
2013-09-30 17:20:49 +08:00
|
|
|
* gimp_layer_create_mask() will fail if there are no active channels
|
|
|
|
* on the image, when called with 'ADD-CHANNEL-MASK'. It will return a
|
|
|
|
* black mask when called with 'ADD-ALPHA-MASK' or
|
|
|
|
* 'ADD-ALPHA-TRANSFER-MASK' on a layer with no alpha channels, or with
|
|
|
|
* 'ADD-SELECTION-MASK' when there is no selection on the image.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2003-12-09 01:26:55 +08:00
|
|
|
* Returns: The newly created mask.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-09 01:26:55 +08:00
|
|
|
gint32
|
|
|
|
gimp_layer_create_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
GimpAddMaskType mask_type)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2003-12-09 01:26:55 +08:00
|
|
|
gint32 mask_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-create-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, mask_type,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-12-09 01:26:55 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
mask_ID = return_vals[1].data.d_layer_mask;
|
2000-08-23 09:44:59 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
2003-12-09 01:26:55 +08:00
|
|
|
return mask_ID;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2003-12-04 22:05:17 +08:00
|
|
|
* gimp_layer_get_mask:
|
2000-08-25 07:06:53 +08:00
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
|
|
|
* Get the specified layer's mask if it exists.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified layer's mask, or -1 if none
|
|
|
|
* exists.
|
|
|
|
*
|
|
|
|
* Returns: The layer mask.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
1997-11-25 06:05:25 +08:00
|
|
|
gint32
|
2003-12-04 22:05:17 +08:00
|
|
|
gimp_layer_get_mask (gint32 layer_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
gint32 mask_ID = -1;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2006-03-16 01:42:12 +08:00
|
|
|
mask_ID = return_vals[1].data.d_layer_mask;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return mask_ID;
|
|
|
|
}
|
|
|
|
|
2004-11-09 00:58:43 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_from_mask:
|
|
|
|
* @mask_ID: Mask for which to return the layer.
|
|
|
|
*
|
|
|
|
* Get the specified mask's layer.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified mask's layer , or -1 if none
|
|
|
|
* exists.
|
|
|
|
*
|
|
|
|
* Returns: The mask's layer.
|
|
|
|
*
|
|
|
|
* Since: GIMP 2.2
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2004-11-09 00:58:43 +08:00
|
|
|
gint32
|
|
|
|
gimp_layer_from_mask (gint32 mask_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gint32 layer_ID = -1;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-from-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_CHANNEL, mask_ID,
|
|
|
|
GIMP_PDB_END);
|
2004-11-09 00:58:43 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
layer_ID = return_vals[1].data.d_layer;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return layer_ID;
|
|
|
|
}
|
|
|
|
|
2003-12-09 06:33:17 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_add_mask:
|
2004-10-16 00:10:16 +08:00
|
|
|
* @layer_ID: The layer to receive the mask.
|
|
|
|
* @mask_ID: The mask to add to the layer.
|
2003-12-09 06:33:17 +08:00
|
|
|
*
|
|
|
|
* Add a layer mask to the specified layer.
|
|
|
|
*
|
|
|
|
* This procedure adds a layer mask to the specified layer. Layer masks
|
|
|
|
* serve as an additional alpha channel for a layer. This procedure
|
|
|
|
* will fail if a number of prerequisites aren't met. The layer cannot
|
|
|
|
* already have a layer mask. The specified mask must exist and have
|
2007-03-28 14:36:56 +08:00
|
|
|
* the same dimensions as the layer. The layer must have been created
|
|
|
|
* for use with the specified image and the mask must have been created
|
|
|
|
* with the procedure 'gimp-layer-create-mask'.
|
2003-12-09 06:33:17 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-09 06:33:17 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_add_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gint32 mask_ID)
|
2003-12-09 06:33:17 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-add-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_CHANNEL, mask_ID,
|
|
|
|
GIMP_PDB_END);
|
2003-12-09 06:33:17 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_remove_mask:
|
2004-10-16 00:10:16 +08:00
|
|
|
* @layer_ID: The layer from which to remove mask.
|
|
|
|
* @mode: Removal mode.
|
2003-12-09 06:33:17 +08:00
|
|
|
*
|
|
|
|
* Remove the specified layer mask from the layer.
|
|
|
|
*
|
|
|
|
* This procedure removes the specified layer mask from the layer. If
|
|
|
|
* the mask doesn't exist, an error is returned.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2003-12-09 06:33:17 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_remove_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
GimpMaskApplyMode mode)
|
2003-12-09 06:33:17 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-remove-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, mode,
|
|
|
|
GIMP_PDB_END);
|
2003-12-09 06:33:17 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_is_floating_sel:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
|
|
|
* Is the specified layer a floating selection?
|
|
|
|
*
|
|
|
|
* This procedure returns whether the layer is a floating selection.
|
|
|
|
* Floating selections are special cases of layers which are attached
|
|
|
|
* to a specific drawable.
|
|
|
|
*
|
2006-03-25 05:57:47 +08:00
|
|
|
* Returns: TRUE if the layer is a floating selection.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-05-31 21:24:14 +08:00
|
|
|
gboolean
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_layer_is_floating_sel (gint32 layer_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
gboolean is_floating_sel = FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-is-floating-sel",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-01 22:59:22 +08:00
|
|
|
is_floating_sel = return_vals[1].data.d_int32;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
2000-06-01 22:59:22 +08:00
|
|
|
return is_floating_sel;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2005-07-11 05:17:22 +08:00
|
|
|
* gimp_layer_get_lock_alpha:
|
2000-08-25 07:06:53 +08:00
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
2005-07-11 05:17:22 +08:00
|
|
|
* Get the lock alpha channel setting of the specified layer.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2005-07-11 05:17:22 +08:00
|
|
|
* This procedure returns the specified layer's lock alpha channel
|
2000-08-25 07:06:53 +08:00
|
|
|
* setting.
|
|
|
|
*
|
2005-07-11 05:17:22 +08:00
|
|
|
* Returns: The layer's lock alpha channel setting.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-05-31 21:24:14 +08:00
|
|
|
gboolean
|
2005-07-11 05:17:22 +08:00
|
|
|
gimp_layer_get_lock_alpha (gint32 layer_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2005-07-11 05:17:22 +08:00
|
|
|
gboolean lock_alpha = FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-lock-alpha",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2005-07-11 05:17:22 +08:00
|
|
|
lock_alpha = return_vals[1].data.d_int32;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
2005-07-11 05:17:22 +08:00
|
|
|
return lock_alpha;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
2005-07-11 05:17:22 +08:00
|
|
|
* gimp_layer_set_lock_alpha:
|
2000-08-25 07:06:53 +08:00
|
|
|
* @layer_ID: The layer.
|
2005-07-11 05:17:22 +08:00
|
|
|
* @lock_alpha: The new layer's lock alpha channel setting.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2005-07-11 05:17:22 +08:00
|
|
|
* Set the lock alpha channel setting of the specified layer.
|
2000-08-25 07:06:53 +08:00
|
|
|
*
|
2005-07-11 05:17:22 +08:00
|
|
|
* This procedure sets the specified layer's lock alpha channel
|
2000-08-25 07:06:53 +08:00
|
|
|
* setting.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2005-07-11 05:17:22 +08:00
|
|
|
gimp_layer_set_lock_alpha (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gboolean lock_alpha)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-lock-alpha",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, lock_alpha,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2001-05-20 22:15:09 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_get_apply_mask:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Get the apply mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure returns the specified layer's apply mask setting. If
|
2006-03-25 05:57:47 +08:00
|
|
|
* the value is TRUE, then the layer mask for this layer is currently
|
|
|
|
* being composited with the layer's alpha channel.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Returns: The layer's apply mask setting.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_get_apply_mask (gint32 layer_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean apply_mask = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-apply-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
apply_mask = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return apply_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_set_apply_mask:
|
|
|
|
* @layer_ID: The layer.
|
2006-03-16 01:42:12 +08:00
|
|
|
* @apply_mask: The new layer's apply mask setting.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Set the apply mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure sets the specified layer's apply mask setting. This
|
|
|
|
* controls whether the layer's mask is currently affecting the alpha
|
|
|
|
* channel. If there is no layer mask, this function will return an
|
|
|
|
* error.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_set_apply_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gboolean apply_mask)
|
2001-05-20 22:15:09 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-apply-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, apply_mask,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_get_show_mask:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Get the show mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure returns the specified layer's show mask setting. This
|
2006-03-25 05:57:47 +08:00
|
|
|
* controls whether the layer or its mask is visible. TRUE indicates
|
|
|
|
* that the mask should be visible. If the layer has no mask, then this
|
|
|
|
* function returns an error.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Returns: The layer's show mask setting.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_get_show_mask (gint32 layer_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean show_mask = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-show-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
show_mask = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return show_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_set_show_mask:
|
|
|
|
* @layer_ID: The layer.
|
2006-03-16 01:42:12 +08:00
|
|
|
* @show_mask: The new layer's show mask setting.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Set the show mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure sets the specified layer's show mask setting. This
|
2008-05-19 21:27:29 +08:00
|
|
|
* controls whether the layer or its mask is visible. TRUE indicates
|
|
|
|
* that the mask should be visible. If there is no layer mask, this
|
|
|
|
* function will return an error.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_set_show_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gboolean show_mask)
|
2001-05-20 22:15:09 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-show-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, show_mask,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_get_edit_mask:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Get the edit mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure returns the specified layer's edit mask setting. If
|
2006-03-25 05:57:47 +08:00
|
|
|
* the value is TRUE, then the layer mask for this layer is currently
|
|
|
|
* active, and not the layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Returns: The layer's edit mask setting.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_get_edit_mask (gint32 layer_ID)
|
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean edit_mask = FALSE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-edit-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
|
|
|
edit_mask = return_vals[1].data.d_int32;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return edit_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_layer_set_edit_mask:
|
|
|
|
* @layer_ID: The layer.
|
2006-03-16 01:42:12 +08:00
|
|
|
* @edit_mask: The new layer's edit mask setting.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* Set the edit mask setting of the specified layer.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
2006-03-16 01:42:12 +08:00
|
|
|
* This procedure sets the specified layer's edit mask setting. This
|
|
|
|
* controls whether the layer or it's mask is currently active for
|
|
|
|
* editing. If the specified layer has no layer mask, then this
|
|
|
|
* procedure will return an error.
|
2001-05-20 22:15:09 +08:00
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2001-05-20 22:15:09 +08:00
|
|
|
gboolean
|
|
|
|
gimp_layer_set_edit_mask (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gboolean edit_mask)
|
2001-05-20 22:15:09 +08:00
|
|
|
{
|
|
|
|
GimpParam *return_vals;
|
|
|
|
gint nreturn_vals;
|
|
|
|
gboolean success = TRUE;
|
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-edit-mask",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, edit_mask,
|
|
|
|
GIMP_PDB_END);
|
2001-05-20 22:15:09 +08:00
|
|
|
|
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_get_opacity:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
|
|
|
* Get the opacity of the specified layer.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified layer's opacity.
|
|
|
|
*
|
|
|
|
* Returns: The layer opacity.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-06-01 22:59:22 +08:00
|
|
|
gdouble
|
|
|
|
gimp_layer_get_opacity (gint32 layer_ID)
|
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
gint nreturn_vals;
|
2006-04-02 19:22:47 +08:00
|
|
|
gdouble opacity = 0.0;
|
2000-06-01 22:59:22 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-opacity",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-01 22:59:22 +08:00
|
|
|
opacity = return_vals[1].data.d_float;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-06-01 22:59:22 +08:00
|
|
|
|
|
|
|
return opacity;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_set_opacity:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @opacity: The new layer opacity.
|
|
|
|
*
|
|
|
|
* Set the opacity of the specified layer.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified layer's opacity.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_layer_set_opacity (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
gdouble opacity)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-opacity",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_FLOAT, opacity,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_get_mode:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
*
|
|
|
|
* Get the combination mode of the specified layer.
|
|
|
|
*
|
|
|
|
* This procedure returns the specified layer's combination mode.
|
|
|
|
*
|
|
|
|
* Returns: The layer combination mode.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-06-01 22:59:22 +08:00
|
|
|
GimpLayerModeEffects
|
|
|
|
gimp_layer_get_mode (gint32 layer_ID)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-06-01 22:59:22 +08:00
|
|
|
GimpLayerModeEffects mode = 0;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-get-mode",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_END);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-08-03 09:35:28 +08:00
|
|
|
if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
|
2000-06-01 22:59:22 +08:00
|
|
|
mode = return_vals[1].data.d_int32;
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-06-01 22:59:22 +08:00
|
|
|
|
|
|
|
return mode;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2000-08-25 07:06:53 +08:00
|
|
|
/**
|
|
|
|
* gimp_layer_set_mode:
|
|
|
|
* @layer_ID: The layer.
|
|
|
|
* @mode: The new layer combination mode.
|
|
|
|
*
|
|
|
|
* Set the combination mode of the specified layer.
|
|
|
|
*
|
|
|
|
* This procedure sets the specified layer's combination mode.
|
|
|
|
*
|
|
|
|
* Returns: TRUE on success.
|
2010-09-16 04:07:36 +08:00
|
|
|
**/
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_layer_set_mode (gint32 layer_ID,
|
2006-04-12 18:27:31 +08:00
|
|
|
GimpLayerModeEffects mode)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-08-03 09:35:28 +08:00
|
|
|
GimpParam *return_vals;
|
2000-05-31 14:15:06 +08:00
|
|
|
gint nreturn_vals;
|
2000-08-23 09:44:59 +08:00
|
|
|
gboolean success = TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-08-03 06:52:23 +08:00
|
|
|
return_vals = gimp_run_procedure ("gimp-layer-set-mode",
|
2006-04-12 18:27:31 +08:00
|
|
|
&nreturn_vals,
|
|
|
|
GIMP_PDB_LAYER, layer_ID,
|
|
|
|
GIMP_PDB_INT32, mode,
|
|
|
|
GIMP_PDB_END);
|
2000-06-01 22:59:22 +08:00
|
|
|
|
2000-08-23 09:44:59 +08:00
|
|
|
success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
|
|
|
|
|
2000-06-01 22:59:22 +08:00
|
|
|
gimp_destroy_params (return_vals, nreturn_vals);
|
2000-08-23 09:44:59 +08:00
|
|
|
|
|
|
|
return success;
|
2000-06-01 22:59:22 +08:00
|
|
|
}
|