static int DIV = 2; PImage b, c; void setup() { size(screen.width/DIV, screen.height/DIV);//, 800); background(0); b=loadImage("C:\\Swap\\Photos\\03_washington dc bedroom 2.jpg"); }; void draw() { c=b.get(b.width/2, b.height/2, width*3, height*3); image(c, 0, 0, width, height); };