Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何模糊 HTML5 画布的内容?
我知道我可以使用 CSS,但我需要模糊画布的内容,以便以后可以操作它。
没有本机功能可以做到这一点。但是您可以实现自己的图像过滤器操作,方法是使用context.getImageData获取画布数据的原始 RGBA 值数组,对该数据执行过滤器操作,然后使用context.putImageData.
context.getImageData
context.putImageData
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#pixel-manipulation