no_tint()#
Removes the current fill value for displaying images and reverts to displaying images with their original hues.
Examples#
def setup():
img = py5.load_image("laDefense.jpg")
py5.tint(0, 153, 204) # tint blue
py5.image(img, 0, 0)
py5.no_tint() # disable tint
py5.image(img, 50, 0)
Description#
Removes the current fill value for displaying images and reverts to displaying images with their original hues.
Underlying Processing method: noTint
Signatures#
no_tint() -> None
Updated on March 06, 2023 02:49:26am UTC