home *** CD-ROM | disk | FTP | other *** search
- /* LIBGIMP - The GIMP Library
- * Copyright (C) 1995-2000 Peter Mattis and Spencer Kimball
- *
- * gimpchannelops_pdb.c
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
- /* NOTE: This file is autogenerated by pdbgen.pl */
-
- #include "gimp.h"
-
- /**
- * gimp_channel_ops_offset:
- * @drawable_ID: The drawable to offset.
- * @wrap_around: wrap image around or fill vacated regions.
- * @fill_type: fill vacated regions of drawable with background or transparent.
- * @offset_x: offset by this amount in X direction.
- * @offset_y: offset by this amount in Y direction.
- *
- * Offset the drawable by the specified amounts in the X and Y
- * directions
- *
- * This procedure offsets the specified drawable by the amounts
- * specified by 'offset_x' and 'offset_y'. If 'wrap_around' is set to
- * TRUE, then portions of the drawable which are offset out of bounds
- * are wrapped around. Alternatively, the undefined regions of the
- * drawable can be filled with transparency or the background color, as
- * specified by the 'fill_type' parameter.
- *
- * Returns: TRUE on success.
- */
- gboolean
- gimp_channel_ops_offset (gint32 drawable_ID,
- gboolean wrap_around,
- GimpChannelOffsetType fill_type,
- gint offset_x,
- gint offset_y)
- {
- GimpParam *return_vals;
- gint nreturn_vals;
- gboolean success = TRUE;
-
- return_vals = gimp_run_procedure ("gimp_channel_ops_offset",
- &nreturn_vals,
- GIMP_PDB_DRAWABLE, drawable_ID,
- GIMP_PDB_INT32, wrap_around,
- GIMP_PDB_INT32, fill_type,
- GIMP_PDB_INT32, offset_x,
- GIMP_PDB_INT32, offset_y,
- GIMP_PDB_END);
-
- success = return_vals[0].data.d_status == GIMP_PDB_SUCCESS;
-
- gimp_destroy_params (return_vals, nreturn_vals);
-
- return success;
- }
-
- /**
- * gimp_channel_ops_duplicate:
- * @image_ID: The image.
- *
- * Duplicate the specified image
- *
- * This procedure duplicates the specified image, copying all layers,
- * channels, and image information.
- *
- * Returns: The new, duplicated image.
- */
- gint32
- gimp_channel_ops_duplicate (gint32 image_ID)
- {
- GimpParam *return_vals;
- gint nreturn_vals;
- gint32 new_image_ID = -1;
-
- return_vals = gimp_run_procedure ("gimp_channel_ops_duplicate",
- &nreturn_vals,
- GIMP_PDB_IMAGE, image_ID,
- GIMP_PDB_END);
-
- if (return_vals[0].data.d_status == GIMP_PDB_SUCCESS)
- new_image_ID = return_vals[1].data.d_image;
-
- gimp_destroy_params (return_vals, nreturn_vals);
-
- return new_image_ID;
- }
-