get_image_height
Returns image height in pixels.
Signature
get_image_height
Returns image height in pixels.Signature
get_image_height(image: Image) -> intParameters
| Name | Type | Default | Description |
|---|---|---|---|
image | Image | None | image argument for this API call. |
Returns
intExample
from conjure import *
init_window(360, 640, "Images")
sprite = load_image("player.png")
draw_image(sprite, 120, 220)See also
load_imageunload_imagedraw_image
Return to the images overview or continue with the quickstart.