ImageRotate()

Rotates the image

Usage

BOOLEAN = ImageRotate( name, angle, x, y, interpolation )
Argument Summary
name the image object
angle the angle to rotate the image
x the x co-ordinate to rotate the image at [optional]
y the y co-ordinate to rotate the image at [optional]
interpolation the type of interpolation to use; nearest, bilinear, bicubic [optional]

Calling

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

ImageRotate(
   name=?, 
   angle=?, 
   x=?, 
   y=?, 
   interpolation=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageRotate( ArgumentCollection={
   name : ?, 
   angle : ?, 
   x : ?, 
   y : ?, 
   interpolation : ?
} );