Name

PImage

Examples
size(100, 100)
photo = loadImage("laDefense.jpg")
image(photo, 0, 0)
Description Datatype for storing images. Processing can display .gif, .jpg, .tga, and .png images. Images may be displayed in 2D and 3D space. Before an image is used, it must be loaded with the loadImage() function. The PImage class contains fields for the width and height of the image, as well as an array called pixels that contains the values for every pixel in the image. The methods described below allow easy access to the image's pixels and alpha channel and simplify the process of compositing.

Before using the pixels array, be sure to use the loadPixels() method on the image to make sure that the pixel data is properly loaded.

To create a new image, use the createImage() function. Do not instantiate the object directly with the syntax PImage().
Related loadImage()
imageMode()
createImage()

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

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