c# 从A1R5G5B5图像类型读取rgb

发布于 2024-11-23 21:17:13 字数 99 浏览 1 评论 0原文

我需要在 C# 中从标准 0-255 值转换 2 个字节(16 位),它们是 A1R5G5B5 类型图像的像素(因此 1 位 alpha、5 位红色、5 位绿色、5 位蓝色) 提前致谢

I need in c# convert 2 bytes (16 bits) that are a pixel of an image of type A1R5G5B5 (so 1 bit alpha, 5 bits red, 5 bits green, 5 bits blue) from a standard 0-255 value
thanks in advance

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

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

发布评论

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

评论(1

北方的韩爷 2024-11-30 21:17:13

这是一个快速而肮脏的解决方案,但它应该适合您。

using System.Drawing;

class ShortColor
{
    public bool Alpha { get; set; }

    public byte Red   { get; set; }
    public byte Green { get; set; }
    public byte Blue  { get; set; }

    public ShortColor(short value)
    {
         this.Alpha = (value & 0x8000) > 0;

         this.Red = (byte)((value & 0x7C64) >> 10);
         this.Green = (byte)((value & 0x3E0) >> 5);
         this.Blue = (byte)((value & 0x001F));
    }

    public ShortColor(Color color)
    {
         this.Alpha = color.A != 0;

         this.Red = (byte)(color.R / 8);
         this.Green = (byte)(color.G / 8);
         this.Blue = (byte)(color.B / 8);
    }

    public static explicit operator Color(ShortColor shortColor)
    {
         return Color.FromArgb(
             shortColor.Alpha ? 255 : 0,
             shortColor.Red * 8,
             shortColor.Green * 8,
             shortColor.Blue * 8
         );
    }
}

This is a quick-and-dirty solution, but it should work for you.

using System.Drawing;

class ShortColor
{
    public bool Alpha { get; set; }

    public byte Red   { get; set; }
    public byte Green { get; set; }
    public byte Blue  { get; set; }

    public ShortColor(short value)
    {
         this.Alpha = (value & 0x8000) > 0;

         this.Red = (byte)((value & 0x7C64) >> 10);
         this.Green = (byte)((value & 0x3E0) >> 5);
         this.Blue = (byte)((value & 0x001F));
    }

    public ShortColor(Color color)
    {
         this.Alpha = color.A != 0;

         this.Red = (byte)(color.R / 8);
         this.Green = (byte)(color.G / 8);
         this.Blue = (byte)(color.B / 8);
    }

    public static explicit operator Color(ShortColor shortColor)
    {
         return Color.FromArgb(
             shortColor.Alpha ? 255 : 0,
             shortColor.Red * 8,
             shortColor.Green * 8,
             shortColor.Blue * 8
         );
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文