//taille du cadre void setup() { size(672,480); } void draw() { //chargement de l'image PImage a; a = loadImage("http://images.earthcam.com/ec_metros/ourcams/statueofliberty.jpg"); //masque alpha tint(255, 255, 255, 50); //position de l'image image(a,0,0); PImage b; b = loadImage("http://images.earthcam.com/ec_metros/ourcams/charleyo.jpg"); //masque alpha tint(255, 255, 255, 50); //position de l'image image(b,352,0); PImage c; c = loadImage("http://images.earthcam.com/ec_metros/ourcams/fridays.jpg"); //masque alpha tint(255, 255, 255, 50); //position de l'image image(c,0,240); PImage d; d = loadImage("http://images.earthcam.com/ec_metros/ourcams/doubletree2.jpg"); //masque alpha tint(255, 255, 255, 50); //position de l'image image(d,320,240); }