Reference documentation code example glitch for PImage.height

Strangely enough, the code example given in reference section for Pimage_height doesn’t have any mention at all of height in it. Should I report this via GitHib?

PImage photo;

void setup() {
  size(400, 400);
  photo = loadImage("mt-horai.jpg");
}

void draw() {
  image(photo, 0, 0);
}

from:

1 Like

Good catch!

Yes please do submit a GitHub issue on the processing-website repository using the following link: report a content error.

Note: the file for the PImage.height example is found here:

2 Likes