xxxxxxxxxx
35
let img;
let img1;
function preload() {
img = loadImage(
"https://th.bing.com/th/id/OIG.aNqD2DLYf_snrEaj01eu?pid=ImgGn"
);
img1 = loadImage("assets/cosmo.png");
}
function setup() {
imageMode(CENTER);
img.resize(600, 600);
img1.resize(10, 10);
myCanvas = createCanvas(img.width, img.height);
for (let col = 0; col < img.width; col += 10) {
for (let row = 0; row < img.height; row += 10) {
let colour = img.get(col, row);
strokeWeight(5)
stroke(color(colour));
// if (col % 20 === 0 && row % 20 === 0) {
print(colour)
if(colour[2]>200 || colour[1]>200 || colour[0]>200){
image(img1, col, row);
}
point(col, row);
}
}
}
function draw() {}