Reference+
Name
noTint()
Description
Removes the current fill value for displaying images and reverts to displaying images with their original hues.
Examples
size(400,400); PImage img; img = loadImage("yuya-onsen.jpg"); tint(0, 153, 204); // Tint blue image(img, 0, 0); noTint(); // Disable tint image(img, 200, 0);
Syntax
noTint()
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.