klyn.gui.images.Image.height
property
public readonly property height as Int:
DescriptionGets the height of the image.
image = new Image()
image.load("image.png")
print(image.height)
ReturnsThe height of the image. ``` image = new Image() image.load("image.png") print(image.height) ```