IsImage()

Determines if the object passed in is a CFML image

Usage

BOOLEAN = IsImage( obj )
Argument Summary
obj obj - the object to be tested

Calling

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

IsImage(
   obj=?
);

Supports passing parameters as a structure using ArgumentCollection:

IsImage( ArgumentCollection={
   obj : ?
} );