PImage img; img = loadImage("test.png"); size(628, 350); imageMode(CENTER); noStroke(); background(255); for( int i = 0; i < img.height; i++ ){ for( int j = 0; j < img.width; j++ ){ color c = img.get(j,i); stroke(blue(c), green(c), red(c)); point(j, i); } }