// Sample "LOLdog" image PFont f; PImage img; void setup() { size(500, 500); img = loadImage("jesterdog.jpg"); f = createFont("Verdana", 42, true); } void draw() { image(img, 0, 0, 500, 500); textFont(f); fill(100, 100, 240); //textAlign(LEFT); text("Woof!", 50, 50); }