访问 HTML Canvas 中的像素
是否可以询问 HTML Canvas 对象以检索特定像素的颜色?
答案:
是的,您可以使用 W3C 的像素操作方法从画布中检索各个像素值。
示例:
下面的示例演示了反转画布上图像的颜色:
<code class="javascript">// Obtain the CanvasPixelArray for the specified coordinates and dimensions var imgd = context.getImageData(x, y, width, height); var pix = imgd.data; // Iterate over each pixel and invert its color for (var i = 0, n = pix.length; i < n; i += 4) { pix[i ] = 255 - pix[i ]; // red pix[i+1] = 255 - pix[i+1]; // green pix[i+2] = 255 - pix[i+2]; // blue // i+3 is alpha (the fourth element) } // Display the modified ImageData at the specified (x,y) coordinates context.putImageData(imgd, x, y);</code>
以上是您可以从 HTML Canvas 查询各个像素颜色吗?的详细内容。更多信息请关注PHP中文网其他相关文章!