ImageInfo()

Returns a structure that contains information about the image, such as height, width, color model, size, and filename.

Requires Extension: Image extension

ImageInfo( image=any );

Returns: Struct

Argument Description
image
any, required

The image on which this operation is performed.

Alias: name

Examples

img = imageNew("",100,100,"rgb","yellow");
    dump(img);
    dump(ImageInfo(img));

See also