a port of the Processing Visualization Language
Name

noTint()

Examples
example pic
// @pjs preload must be used to preload the image
    /* @pjs preload="laDefense.jpg"; */
    PImage b;
b = loadImage("laDefense.jpg");
tint(0, 153, 204); // Tint blue
image(b, 0, 0);
noTint(); // Disable tint
image(b, 50, 0);
Description

Removes the current fill value for displaying images and reverts to displaying images with their original hues.

Syntax
noTint()
Returns None
Usage Web & Application
Related tint()
image()

This reference is licensed under the CC BY-NC-SA 2.0 license:

Creative Commons License
Fork me on GitHub