xxxxxxxxxx
27
// ModifiedPixels (c) 2015, 2021 kouichi.matsuda@gmail.com
let img;
function preload() {
img = loadImage("sky.png"); // 画像を読み込む
}
function setup() {
createCanvas(img.width, img.height);
for (let y = 0; y < 10; y++) {
for (let x = 0; x < img.width; x++) {
let c = img.get(x, y);
if (red(c) === 255 && green(c) === 0 && blue(c) === 0) {
img.set(x, y, color(0, 255, 0));
} else {
img.set(x, y, color(0, 0, 255));
}
}
}
img.updatePixels();
image(img, 0, 0); // 画像を表示する
}
function draw() {}