klyn.gui.images.Image.width
property
public readonly property width as Int:
Description
Gets the width of the image.
image = new Image()
image.load("image.png")
print(image.width)
Returns
The width of the image. ``` image = new Image() image.load("image.png") print(image.width) ```