ImageSetantialiasing()

Sets whether the anti-aliasing feature is turned on; defaults to on

Usage

BOOLEAN = ImageSetantialiasing( name, antialias )
Argument Summary
name the image object derived from ImageNew() or ImageRead()
antialias boolean to turn the anti-alias feature on or off

Calling

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

ImageSetantialiasing(
   name=?, 
   antialias=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageSetantialiasing( ArgumentCollection={
   name : ?, 
   antialias : ?
} );