p5((s) => {
let image;
s.preload = function () {
image = s.loadImage(imageURL);
};
s.setup = function () {
let ratio = width / image.width;
s.createCanvas(width, image.height * ratio);
image.resize(width, image.height * ratio);
s.noLoop();
};
s.draw = function () {
image.loadPixels();
for (let x = 100; x < 200; x = x+1) {
for (let y = 100; y < image.height - 100; y++) {
image.set(x, y, s.color(0,255,0));
}
}
for (let x = 300; x < 400; x++) {
for (let y = 100; y < image.height - 100; y++) {
let color = image.get(x, y);
let newColor = s.color(s.red(color), s.green(color), 255)
image.set(x, y, newColor);
}
}
for (let x = 500; x < 600; x++) {
for (let y = 100; y < image.height - 100; y++) {
let color = image.get(x, y);
let newColor = s.color(s.blue(color), s.red(color), s.green(color))
image.set(x, y, newColor);
}
}
s.colorMode(s.HSL)
for (let x = 700; x < 800; x++) {
for (let y = 100; y < image.height - 100; y++) {
let color = image.get(x, y);
let newColor = s.color(s.hue(color), s.saturation(color), 50)
image.set(x, y, newColor);
}
}
image.updatePixels();
s.image(image, 0, 0);
};
})