WPF 不透明蒙版

发布于 2024-12-12 16:51:44 字数 431 浏览 1 评论 0原文

我可以使用 LinearGradientBrush 在 WPF 中创建不透明蒙版,如下所示。

    <LinearGradientBrush x:Key="SplitterOpactityMask" StartPoint="0,0" EndPoint="1,0">
        <GradientStop Color="#FFFFFFFF" Offset="0"/>
        <GradientStop Color="#00FFFFFF" Offset="1"/>
    </LinearGradientBrush>

这为我提供了一个在画笔范围内从零透明度开始到完全透明的画笔。

但是,使用哪些十六进制代码来提供不同级别的透明度?例如,我想以 75% 的透明度开始画笔,然后转到画笔范围的 100%。

I can create an opacity mask in WPF using a LinearGradientBrush as follows

    <LinearGradientBrush x:Key="SplitterOpactityMask" StartPoint="0,0" EndPoint="1,0">
        <GradientStop Color="#FFFFFFFF" Offset="0"/>
        <GradientStop Color="#00FFFFFF" Offset="1"/>
    </LinearGradientBrush>

This gives me a brush starting from zero transparency to full transparency over the range of brush.

However what hex codes are used to give different levels of transparency? For example I want to start my brush at 75% transparency and then go to 100% of the range of the brush.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东京女 2024-12-19 16:51:46

正如记录的,OpacityMask 使用来自指定的刷子。如果您询问为颜色指定的十六进制的哪一部分代表 alpha,那么它是 8 十六进制颜色代码的前 2 个十六进制字符(即 #aarrggbb)。所以 FF 是完全不透明的,00 是完全透明的。因此 75% 透明度(即 25% 不透明)将为 0x40 (255 * .25)。

As documented the OpacityMask uses the alpha channel from the specified brush. If you're asking which part of the hex you are specifying for the color represents the alpha then it is the 1st 2 hex characters of the 8 hex color code (i.e. #aarrggbb). So FF is fully opaque and 00 is fully transparent. So 75% transparency (i.e. 25% opaque) would be 0x40 (255 * .25).

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