ImageWrite()

Writes the given image out to file

Usage

BOOLEAN = ImageWrite( name, destination, overwrite, quality )
Argument Summary
name the image object derived from ImageNew() or ImageRead()
destination the file path to where the image will be written [optional]
overwrite flag to control where the destination file is overwritten [optional]
quality if the output is a JPG then this is a quality factor between 0 and 1. Default 0.75 [optional]

Calling

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

ImageWrite(
   name=?, 
   destination=?, 
   overwrite=?, 
   quality=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageWrite( ArgumentCollection={
   name : ?, 
   destination : ?, 
   overwrite : ?, 
   quality : ?
} );