Py5Image.height
Contents
Py5Image.height¶
The height of the image in units of pixels.
Examples¶

1 2 3 4 | 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 November 12, 2021 11:30:58am UTC