//image and text size(300,200); background(0); PImage b; b = loadImage("sun.jpg"); image(b,49,10,width/1.5,height/1.5); //1 is actual size (1.1 - smaller and so on) PFont font; //selecting the font in processing font = loadFont("Haettenschweiler-48.vlw"); // actual font textFont(font,30); // size fill(255,0,0); //font colour text("indoor sun",100,180); //("actual words in here",x,y - bottom left hand corner)