system.Drawing 与 Maui.Graphics; From.Argb 给出不同的输出

发布于 2025-01-10 21:17:11 字数 615 浏览 0 评论 0原文

所以我正在使用 .NET Maui 并遇到了以下问题。 我想使用 .FromArgb 但在毛伊岛。最初我使用的是 System.Drawing.Color,但使用的是 Maui。 Graphics.Color 给出了不同的结果:

//Color (example color)
int KeyColor = -16777088;

//system.Drawing way:
var forgroundColor = System.Drawing.Color.FromArgb(KeyColor);
//Output: "{Name=ff000080, ARGB=(255, 0, 0, 128)}"

//Maui.Graphics way (I have to use ToString cuz FromArgb needs an string):
var forgroundColorMaui = Microsoft.Maui.Graphics.Color.FromArgb(KeyColor.ToString());
//Output: Red=0, Green=0, Blue=0, Alpha=1

所以我想使用 system.drawing 的输出,然后在 Maui.Graphics 中使用。我不知道为什么输出不同。有人有主意吗?感谢您!

So I am using .NET Maui and came across the following problem.
I want to use .FromArgb but in Maui. Originally I was using System.Drawing.Color, but using Maui. Graphics.Color gives a different result:

//Color (example color)
int KeyColor = -16777088;

//system.Drawing way:
var forgroundColor = System.Drawing.Color.FromArgb(KeyColor);
//Output: "{Name=ff000080, ARGB=(255, 0, 0, 128)}"

//Maui.Graphics way (I have to use ToString cuz FromArgb needs an string):
var forgroundColorMaui = Microsoft.Maui.Graphics.Color.FromArgb(KeyColor.ToString());
//Output: Red=0, Green=0, Blue=0, Alpha=1

So I want to use the output from system.drawing but then in the Maui.Graphics. I dont know why the outputs are different. Anyone got an idea? Thanks you!

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

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

发布评论

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

评论(1

枫林﹌晚霞¤ 2025-01-17 21:17:11

查看该方法的文档

Color.FromArgb 来自基于字符串的十六进制值,格式为“#AARRGGBB”或“#RRGGBB”或“#ARGB”或“RGB”,其中每个字母对应于 alpha、红色、绿色的十六进制数字和蓝色通道。

因此,我们看到 Maui 版本与 System.Drawing 版本不同,并且期望输入以不同的方式格式化。

Take a look at the documentation for the method:

Color.FromArgb from a string-based hexadecimal value in the form "#AARRGGBB" or "#RRGGBB" or "#ARGB" or "RGB", where each letter corresponds to a hexadecimal digit for the alpha, red, green, and blue channels.

So we see the Maui version is not the same as the System.Drawing version and expects the input formatted in a different way.

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