1

我想用 webos 中的其他颜色替换图像像素颜色。任何人都可以建议我如何做到这一点。谢谢

4

1 回答 1

0

这可以通过使用 HTML5 画布 API 来完成。创建一个图像大小的画布,然后将图像绘制到画布中。获取图像数据,然后操作!

var canvas = document.getElementById(canvasID);
var context = canvas.getContext('2d');
var image = context.getImageData(0,0,canvas.width,canvas.height);

image现在是一个imageData对象,其中包含一个数组data,其中包含图像的所有像素。假设您想去除第六列和第三行像素处的绿色分量。

var index = (5*image.width+2)*4;
//six columns of pixels, plus two for the third row.
//Multiply by four, because there are four channels.
image.data[index+1] = 0; //Plus one, because we want the second component. 

完成像素操作后,将图像数据加载回画布。

context.putImageData(image);
于 2012-05-08T16:40:43.773 回答