仅将形状绘制到 Alpha 通道
我只想在图像的 Alpha 通道上绘制一个形状。当使用 Graphics.DrawImage(..) 绘制图像时,我可以使用颜色矩阵,因为它有一个参数可以传入 ImageAttributes。是否可以使用 FillEllipse 方法来做到这一点?或者我是否必须将其绘制到单独的图像,然后使用 DrawImage 将其应用到我的主图像?
干杯, 担。
I want to draw a shape to the alpha channel only of my image. I can use a colour matrix when drawing an image with Graphics.DrawImage(..), as it has a parameter to pass in the ImageAttributes. Is it possible to do this with the FillEllipse method? Or would I have to draw it to a separate image, then use DrawImage to apply it to my main image?
Cheers,
Dan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试类似:
然后填写:
You may try something like:
then fill with: