仅将形状绘制到 Alpha 通道

发布于 2024-09-08 19:54:05 字数 190 浏览 4 评论 0原文

我只想在图像的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£烟消云散 2024-09-15 19:54:05

您可以尝试类似:

Graphics g;
g.CompositionMode = CompositingMode.SourceOver;

然后填写:

Color c = Color.FromArgb(100, Color.White);

You may try something like:

Graphics g;
g.CompositionMode = CompositingMode.SourceOver;

then fill with:

Color c = Color.FromArgb(100, Color.White);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文