Image.GetFileInfo

table Image.GetFileInfo ( 

string Filename )

Example 1

image_info = Image.GetFileInfo("Image1");

Gets the pixel dimensions and bit depth of the "Image1" image object and stores the width, height and bit depth values in the "image_info" table. The dimensions can be accessed by referencing image_info.Width and image_info.Height and it's bit depth by image_info.BitDepth.

See also:  Related Actions