You will need this image:

Code:

// image is from http://www.ellione.it/fanlistings.php
PImage eye = loadImage("th_mcescher3.jpg");

size(1113,117);

image(eye,0,0);

// REMINDER:  Things you can do with images.
// save("name-of-image.tif");
// saveFrame("frame-####.tga");
// PImage img = loadImage("name-of-image.gif");
// set(img);
// set(img,x,y);
// set(img,x,y,width,height);
// PImage screenShot = get();
// color pixelColor = get(x,y);
// PImage croppedScreen = get(x,y,width,height);