📅  最后修改于: 2023-12-03 15:18:12.488000             🧑  作者: Mango
通道(channel)是 p5.js 中用于图像处理的一种工具,可以将图像的每个像素拆分成红、绿、蓝三个颜色通道。通道函数可在这些通道上进行单独或联合的操作,以调整图像的色彩、亮度、对比度等特性。
image.channel([r, g, b, alpha]);
以下示例通过禁止红色通道,使图像变为青色。
function preload() {
img = loadImage('assets/cat.jpg');
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
img.loadPixels();
for (var i = 0; i < img.pixels.length; i += 4) {
img.pixels[i+1] = 255 - img.pixels[i+1];
img.pixels[i+2] = 255 - img.pixels[i+2];
}
img.updatePixels();
// 禁止红色通道
img.channel([false, true, true, true]);
image(img, 0, 0, width, height);
}