xxxxxxxxxx
28
let img;
function preload() {
img = loadImage(
"https://th.bing.com/th/id/OIG.aNqD2DLYf_snrEaj01eu?pid=ImgGn"
);
}
function setup() {
img.resize(600, 600);
myCanvas = createCanvas(img.width, img.height);
for (let col = 0; col < img.width; col += 1) {
for (let row = 0; row < img.height; row += 1) {
let colour = img.get(col, row);
stroke(color(colour));
point(col, row);
}
}
}
function draw() {
}