Name

loadPixels()

Examples
halfImage = width * height / 2
myImage = loadImage("apples.jpg")
myImage.loadPixels()
for i in range(halfImage):
  myImage.pixels[i + halfImage] = myImage.pixels[i]
myImage.updatePixels()
image(myImage, 0, 0)
Description Loads the pixel data for the image into its pixels list. This function must always be called before reading from or writing to pixels.

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels list, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change.
Syntax
loadPixels()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.