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);
    Image output for example 1

Syntax

  • noTint()

Return

  • void