PFont font; float x1=0; float x2=0; void setup() { size(400,700); background(255); font = loadFont("Irrep-22.vlw"); textFont(font); noStroke(); } void draw(){ fill(255,0,0); text("Soyeon", random(-150,150), random(-400,400)); fill(255,153,0); text("Soyeon", random(-270,270), random(-490,490)); fill(255,255,0); text("Soyeon", random(-400,400), random(-555,555)); PImage img; img = loadImage ("back.png"); image (img,0,520); }