ImageCopy()

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

Usage

IMAGE = ImageCopy( name, x, y, width, height, dx, dy )
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
dx the left of the new bounding image (defaults to 0) [optional]
dy the top of the new bounding image (defaults to 0) [optional]

Calling

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

ImageCopy(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?, 
   dx=?, 
   dy=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageCopy( ArgumentCollection={
   name : ?, 
   x : ?, 
   y : ?, 
   width : ?, 
   height : ?, 
   dx : ?, 
   dy : ?
} );