xxxxxxxxxx
PImage pic;
void setup() {
fullScreen();
pic = loadImage("Firefox_Logo");
background(255);
}
void draw() {
float x = random(width);
float y = random(height);
color c = pic.get(int(x),int(y));
for(int i = 0; i < 1000; i++){
fill(c);
noStroke();
ellipse(x,y,10,10);
}
}