Name

imageMode()

Examples
img = loadImage("laDefense.jpg")
imageMode(CORNER)
image(img, 10, 10, 50, 50)  # Draw image using CORNER mode
img = loadImage("laDefense.jpg")
imageMode(CORNERS)
image(img, 10, 10, 90, 40)  # Draw image using CORNERS mode
img = loadImage("laDefense.jpg")
imageMode(CENTER)
image(img, 50, 50, 80, 80)  # Draw image using CENTER mode
Description Modifies the location from which images are drawn by changing the way in which parameters given to image() are intepreted.

The default mode is imageMode(CORNER), which interprets the second and third parameters of image() as the upper-left corner of the image. If two additional parameters are specified, they are used to set the image's width and height.

imageMode(CORNERS) interprets the second and third parameters of image() as the location of one corner, and the fourth and fifth parameters as the opposite corner.

imageMode(CENTER) interprets the second and third parameters of image() as the image's center point. If two additional parameters are specified, they are used to set the image's width and height.

The parameter must be written in ALL CAPS because Processing is a case-sensitive language.
Syntax
imageMode(mode)
Parameters
modeint: either CORNER, CORNERS, or CENTER
Related loadImage()
PImage
image()
background()

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

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