Py5Image.to_pil()#
Convert the Py5Image object to a PIL Image object.
Examples#
def setup():
py5.background(0)
img = py5.load_image('rockies.jpg')
img = img.to_pil()
img = img.rotate(45)
py5.image(img, 0, 0)
Description#
Convert the Py5Image object to a PIL Image object. The returned PIL Image object can include the entirety of the Py5Image’s pixels or a rectangular subsection. Use the x
, y
, h
, and w
parameters to specify the bounds of a rectangular subsection.
Signatures#
to_pil() -> PIL_Image
to_pil(
x: int, # x-coordinate of the source's upper left corner
y: int, # y-coordinate of the source's upper left corner
w: int, # source width
h: int, # source height
) -> PIL_Image
Updated on August 07, 2023 14:29:21pm UTC