How to change a tint()
in
Programming Questions
•
1 year ago
Hi all, this is my first post :)
I have something like this in my sketch in the void draw:
PImage b;
b = loadImage("laDefense.jpg");
image(b, 0, 0); // Tint blue
tint(0, 153, 204);
image(b, 50, 0);
the image changes its possition etc etc etc and then I want to change the tint color of this image already printed...
How can I do it?
I have something like this in my sketch in the void draw:
PImage b;
b = loadImage("laDefense.jpg");
image(b, 0, 0); // Tint blue
tint(0, 153, 204);
image(b, 50, 0);
the image changes its possition etc etc etc and then I want to change the tint color of this image already printed...
How can I do it?
1