0

我有一个在 javascript HTML5 画布中生成的图像。我现在想说的是,某种颜色(比如红色)的所有px都变成了透明的

4

1 回答 1

1
var imgd = context.getImageData(0,0, canvas.widht, canvas.height);
var pix = imgd.data;

// Loop over each pixel and set alpha channel to 255 for every red pixel
for (var i = 0; n = pix.length, i < n; i += 4) {
  if ( pix[i  ] > 240 && pix[i+1 ] < 15 && pix[i+2] < 15 ) // it is kind of red
      pix[i+3] = 255; // alpha channel
}

// Draw the ImageData object at the given (x,y) coordinates.
context.putImageData(imgd, 0,0);

我没有测试代码,但它应该可以工作(如果没有,你有全局的想法)

于 2012-05-16T13:59:30.450 回答