IsImage
Was this helpful?
IsImage( value )value
any
Yes
The value to check if it is a BoxImage object.
Boolean — Returns true if the value is a BoxImage object, otherwise false.
Determines whether the provided value is a BoxImage object. Useful for type checking before performing image operations.
// Check if a variable is an image
if ( IsImage( myVar ) ) {
// Safe to use image BIFs
myVar.flip();
}ImageNew
ImageCopy
ImageGetWidth
Returns true only for BoxImage objects.
Use this BIF to validate variables before calling image-related functions.
Was this helpful?
Was this helpful?
