gimp_convolve_default << INDEX >> gimp_curves_explicit

gimp_crop (1995-1996)

NAME
gimp_crop - Crop the image to the specified extents.
SYNOPSIS
gimp_crop (image,new_width,new_height,offx,offy)
DESCRIPTION
This procedure crops the image so that it's new width and height are equal to the supplied parameters. Offsets are also provided which describe the position of the previous image's content. All channels and layers within the image are cropped to the new image extents; this includes the image selection mask. If any parameters are out of range, an error is returned.
INPUT ARGUMENTS
TYPENAMEDESCRIPTION
IMAGEimageThe image
INT32new_widthNew image width: (0 < new_width <= width)
INT32new_heightNew image height: (0 < new_height <= height)
INT32offxx offset: (0 <= offx <= (width - new_width))
INT32offyy offset: (0 <= offy <= (height - new_height))
SOME SYNTAX ALTERNATIVES
$image->crop (new_width,new_height,offx,offy)
AUTHOR
Spencer Kimball & Peter Mattis
(c)1995-1996 Spencer Kimball & Peter Mattis


This page was created by gimpdoc, written by Marc Lehmann <pcg@goof.com>