PImage logo; void setup() { size(100, 100); logo = loadImage("/logo-black.png"); frameRate(2); } void draw() { background(0); image(logo, 0,0); }