You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
villares edited this page May 24, 2020
·
4 revisions
Nome
tint()
Exemplos
PImage b;
b =loadImage("laDefense.jpg");
image(b, 0, 0);
// Tint blue tint(0, 153, 204);
image(b, 50, 0);
PImage b;
b =loadImage("laDefense.jpg");
image(b, 0, 0);
// tinge de azul e ajusta transparência tint(0, 153, 204, 126);
image(b, 50, 0);
Descrição
Configura o valor de preenchiemtno para se
visualizar imagems. Imagens pode ser tingidas com cores
específicas ou tornadas transparentes ao se ajustar o
alpha.