Show scaled image and P2D/P3D

edited March 2016 in Programming Questions

Different result showing scaled image with P2D/P3D or default render:

PImage img;
void setup()
{
  size(220, 300, P2D);
  img = loadImage("data.png");
}

void draw()
{
  image(img,10,10,136,136);
}

forum
Can you help me ?
Thanks.

Answers

Sign In or Register to comment.