ImageGetHeight
Was this helpful?
Returns the height (in pixels) of an image. This BIF allows you to retrieve the vertical dimension of an image in BoxLang.
ImageGetHeight(name)name
any
Yes
The image or the name of a variable referencing an image to operate on.
Integer: The height of the image in pixels.
ImageGetHeight returns the height (number of pixels vertically) of the specified image. The image can be passed directly or referenced by variable name.
// Get the height of an image
height = ImageGetHeight(myImage);ImageGetWidth
ImageResize
The image can be passed as a BoxImage object or as a variable name referencing an image.
The returned value is the height in pixels.
Was this helpful?
Was this helpful?
