Py5Image.load_pixels()
Contents
Py5Image.load_pixels()¶
Loads the pixel data for the image into its Py5Image.pixels[] array.
Examples¶

1 2 3 4 5 6 7 8 9 10 11 12 13 14 | def setup():
global my_image
global half_image
half_image = py5.width * py5.height//2
my_image = py5.load_image("apples.jpg")
my_image.load_pixels()
for i in range(0, half_image):
my_image.pixels[i+half_image] = my_image.pixels[i]
my_image.update_pixels()
def draw():
py5.image(my_image, 0, 0)
|
Description¶
Loads the pixel data for the image into its Py5Image.pixels[] array. This function must always be called before reading from or writing to Py5Image.pixels[].
Underlying Processing method: PImage.loadPixels