Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the height of the image in pixels.
Syntax
public int height()
Run On
Client
Return Value
Type: int
An integer that represents the height of the image in pixels.
Examples
The following example prints out the height of the image that is contained in test.bmp.
Image img = new Image();
img.loadFile(@'C:\test.bmp');
print img.height();
pause;