/*its already fourth week and as always,
time is passing by so quickly. I wanted to
make the picture dynamic; the typography
bleeds off the side to help emphasize
the rapid movement of the composition*/
PImage img;
PFont font;
font=loadFont("DIN-Light-48.vlw");
img = loadImage("umbrellas.jpg");
int x;
x=100;
size(400,400);
//in the back
for( int i=0; i<180; i=i+1)
{
tint(255,255,255,120);
image(img, i+300, i-10);
}
//main image
for( int i=0; i<400; i=i+1)
{
tint(255,255,255,120);
image(img, i, i);
}
textFont(font,30);
text("days go by", 305,395);
Exercise 04: Use the text() function to draw a sentence to the screen and use the image() function to draw one or more image(s). Carefully select the image(s), sentence, and composition. Explain your concept as a comment at the top of the code.