PROCCESING y turistiando


UNA CON MÁS SOMBRA
size(480,650);
PImage img;
//el archivo debe estar en el folder data
img=loadImage("Mirando a donde1.jpg");
tint(102);//tinte gris
image(img,0,0);
noTint();//quita tinta
//el archivo debe estar en el folder data
img=loadImage("Monument San Agustin.jpg");
image(img,250,0);

TRES COLORES
size(480,600);
color yellow = color(220, 214, 41);
color green = color(110, 164, 32);
color tan = color(180, 17, 132);
PImage img;
img = loadImage("Midiendo la torre1.jpg");
tint(yellow);
image(img, 0, 0);
img = loadImage("Colpatria.jpg");
tint(green);
image(img, 106, 0);
img = loadImage("Torres del parque.jpg");
tint(tan);
image(img, 320, 0);

COLLAGE
size(480,600);
PImage img;
img = loadImage("Torres del parque.jpg");
background(255);
tint(255, 51);
// Draw the image 10 times, moving each to the right
for (int i = 0; i < 10; i++) {
image(img, 0, i*30);
}

No hay comentarios:

Publicar un comentario