ImageRead()

Loads an image

Usage

IMAGE = ImageRead( src )
Argument Summary
src Path to the image to load (can be a url, file path or memory path)

Calling

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

ImageRead(
   src=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageRead( ArgumentCollection={
   src : ?
} );