Py5Image.height#
The height of the image in units of pixels.
Examples#
def setup():
tiles = py5.load_image("tiles.jpg")
py5.image(tiles, 20, 10)
py5.rect(55, 10, tiles.width, tiles.height)
Description#
The height of the image in units of pixels.
Underlying Processing field: PImage.height
Updated on March 06, 2023 02:49:26am UTC