xxxxxxxxxx
25
let img;
function preload() {
img = loadImage('data/sunflower.jpg');
}
function setup() {
createCanvas(img.width, img.height);
noStroke();
}
function draw() {
//background(20);
//image(img, 0, 0);
for (let i = 0; i < width; i += 40){
for (let j = 0; j < height; j += 40){
let c = img.get(i, j);
// c.setAlpha(100);
c = color(red(c), green(c), blue(c), 20);
fill(c)
circle(i, j, random(1, 40));
}
}
}