ImageCrop()

Crops the image down to the area specified. The bounding rectangle must be inside the current image boundaries

Usage

BOOLEAN = ImageCrop( name, x, y, width, height )
Argument Summary
name the image object
x the left of the bounding rectangle
y the right of the bounding rectangle
width the width of the rectangle
height the height of the rectangle

Calling

Supports named-parameter calling allowing you to use the function like:

ImageCrop(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageCrop( ArgumentCollection={
   name : ?, 
   x : ?, 
   y : ?, 
   width : ?, 
   height : ?
} );