This reference is for Processing 2.0+. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing 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 May 19, 2014 05:30:02pm PDT

Creative Commons License