void setup() { // Load the image three times PImage warhol = loadImage("andy-warhol2.jpg"); size(warhol.width*3, warhol.height); // Draw modified images tint(255, 0, 0); image(warhol, 0, 0); tint(0, 255, 0); image(warhol, 250, 0); tint(0, 0, 255); image(warhol, 500, 0); }