如何用html5 canvas元素绘制透明图像
我的目标是谷歌浏览器。是否可以在画布上绘制透明图像?我所说的透明是指以大约 50% 的不透明度绘制整个图像。
I am targeting google chrome. Is it possible to draw transparent images on a canvas? By transparent I mean the drawing the entire image at something like 50% opacity.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 globalAlpha 属性来执行此操作,如下所示:
是的,它确实适用于图像。已在 Win 7 上使用 IE 9、FF 5、Safari 5 和 Chrome 12 进行验证。
You can do this using the globalAlpha property, like this:
And yes, it does work with images. Verified with IE 9, FF 5, Safari 5, and Chrome 12 on Win 7.
canvas 元素具有全局 alpha 属性,可让您对绘制的任何内容应用部分透明度。
The canvas element has a global alpha attribute that lets you apply partial transparency to anything you draw.
如果您迭代画布的图像数据并手动设置 alpha 值,然后使用 canvas.toDataURL 方法导出透明图像并将其插入到另一个画布中,这是可能的。
It's possible if you iterate thru the canvas' image-data and set the alpha value manually, then export the transparent image with the canvas.toDataURL method and insert it into another canvas.