我正在开发一个游戏客户端,其中纹理颜色存储为 int 值。但是,有时我必须使用 16 位颜色来绘制一些纹理……所以我想知道如何将 32 位颜色转换为 16 位颜色,反之亦然……最好避免像 Color.FromArgb() 和类似的托管函数。我更喜欢通过字节移位尽可能快地完成这些操作。你还知道如何获取 32 位颜色的灰度值吗?
user1978173
问问题
1896 次
1 回答
1
public static Int32 16To32(UInt16 color)
{
Int32 red = (Int32)(((color >> 0xA) & 0x1F) * 8.225806f);
Int32 green = (Int32)(((color >> 0x5) & 0x1F) * 8.225806f);
Int32 blue = (Int32)((color & 0x1F) * 8.225806f);
if (red < 0)
red = 0;
else if (red > 0xFF)
red = 0xFF;
if (green < 0)
green = 0;
else if (green > 0xFF)
green = 255;
if (blue < 0)
blue = 0;
else if (blue > 0xFF)
blue = 0xFF;
return ((red << 0x10) | (green << 0x8) | blue);
}
public static UInt16 32To16(Int32 color)
{
Int32 red = ((((color >> 0x10) & 0xFF) * 0x1F) + 0x7F) / 0xFF;
Int32 green = ((((color >> 0x8) & 0xFF) * 0x1F) + 0x7F) / 0xFF;
Int32 blue = (((color & 0xFF) * 0x1F) + 0x7F) / 0xFF;
return (UInt16)(0x8000 | (red << 0xA) | (green << 0x5) | blue);
}
对于涉及灰度的问题......您可以尝试以下功能,但我只是在没有测试的情况下编写了它,所以我不能保证它会完美运行:
public static Int32 Grayscale(Int32 color)
{
Single red = ((color >> 0xA) & 0x1F) * 8.225806f;
Single green = ((color >> 0x5) & 0x1F) * 8.225806f;
Single blue = (color & 0x1F) * 8.225806f;
Int32 grayscale = (Int32)(((red * 0.299f) + (green * 0.587f) + (blue * 0.114f)) * 0.1215686f);
if (grayscale < 0)
grayscale = 0;
else if (grayscale > 0x1F)
grayscale = 0x1F;
return grayscale;
}
于 2013-01-19T23:15:03.627 回答