Friday 12 October 2012
Montage
PImage img1;
PImage img2;
PImage img3;
PImage img4;
PImage img5;
PImage img6;
void setup() {
size(800, 600);
img1 = loadImage("trees.jpg");
img2 = loadImage("forest.jpg");
img3 = loadImage("leave.jpg");
img4 = loadImage("leavesfalling.jpg");
img5 = loadImage("seat.jpg");
img6 = loadImage("autumnfall.jpg");
}
void draw(){
background(245, 120, 37);//background colour
image(img1, 1, 1, 450, 290); //image positioned and resized
image(img2, 600, 20, 200, 300);
image(img3, 50, 300, 220, 300);
image(img4, 120, 150, 380, 290);
image(img5, 450, 360, 320, 300);
image(img6, 350, 100, 350, 300);
PFont font;
smooth();
font = loadFont("LeviReBrushed-48.vlw");
textFont(font);
textSize(200);
text("Autumn", 100, 400);
textSize(20);
text("Lorenzo Chichiricco", 600, 590);
fill(255, 255, 255);
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment