This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

noTint()

Examples
example pic
PImage img;
img = loadImage("laDefense.jpg");
tint(0, 153, 204);  // Tint blue
image(img, 0, 0);
noTint();  // Disable tint
image(img, 50, 0);
Description Removes the current fill value for displaying images and reverts to displaying images with their original hues.
Syntax
noTint()
Returnsvoid
Relatedtint()
image()
Updated on January 1, 2021 03:38:08am EST