PImage img; img = loadImage("larrycraigmug4.jpg"); size(820, 450); background(255); tint(255, 51); //Draw the image 60 times, moving each to the right for (int i = 0; i < 10; i++) { image(img, i*10, 0); }