ImageGetblob()

Returns binary version of this image

Usage

BINARY = ImageGetblob( name, format )
Argument Summary
name the image object derived from ImageNew() or ImageRead()
format the format of the binary blob. Values, png, jpg or gif. Defaults to png [optional]

Calling

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

ImageGetblob(
   name=?, 
   format=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageGetblob( ArgumentCollection={
   name : ?, 
   format : ?
} );