PImage woman; void setup(){ size(501,400); woman = loadImage("woman.png"); } void draw(){ background(255); image(woman,0,0); filter(INVERT); }