HTML5 画布上的图像渐变
我想在图像上获得径向渐变效果(中间为 alpha = 1,边缘为透明)。
您对我如何做到这一点有什么想法吗?
I would like to obtain a radial gradient effect on an image (alpha = 1
in the middle and transparent on the edges).
Do you have any ideeas on how I could do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没有误解你想要做的事情是:
globalCompositeOperation
设置进行混合图像的透明度渐变。您可以轻松地将其转换为代码:http://jsfiddle.net/W8Ywp/1/。
If I'm not mistaking what you want to do is:
globalCompositeOperation
setting on the context to blend the transparency gradient with the image.You can rather easily translate this into code: http://jsfiddle.net/W8Ywp/1/.