ImageResize()

Resizes the image to the values accordingly

Usage

BOOLEAN = ImageResize( name, width, height, quality )
Argument Summary
name the image object
width width of the new image, can be a percentage value (add %) (blank/missing if to be scaled in proportion to height)
height height of the new image, can be a percentage value (add %) (blank/missing if to be scaled in proportion to width) [optional]
quality values: bicubic (default), bilinear, nearest [optional]

Calling

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

ImageResize(
   name=?, 
   width=?, 
   height=?, 
   quality=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageResize( ArgumentCollection={
   name : ?, 
   width : ?, 
   height : ?, 
   quality : ?
} );