c# 从A1R5G5B5图像类型读取rgb
我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个快速而肮脏的解决方案,但它应该适合您。
This is a quick-and-dirty solution, but it should work for you.