Name | noTint() |
---|---|
Examples | // @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() |