C#、位图、r8g8b8 和 b5g6r5 像素数据
我正在从文件中提取 r8g8b8 调色板,看起来很容易将其转换为 System.Drawing.Color 结构,然后使用 SetPixel 方法填充位图。
但后来我遇到了 b5g6r5 调色板,现在我不知道该怎么办。有没有办法用这种数据填充 Bitmap 类?
新年快乐!
I am extracting r8g8b8 palette from file, looks like its very easy to convert it to System.Drawing.Color struct and then fill Bitmap by using SetPixel method.
But then i've encountered b5g6r5 palette and now i don't know what to do. Is there any way to fill Bitmap class with that kind of data?
Happy new year!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否考虑过将 BGR565 转换为 RGB888(如答案 此处),然后对 RGB888 值执行什么操作?
Have you considered converting BGR565 to RGB888 (as described in the answers here) and then do what you did with your RGB888 values?