C#、位图、r8g8b8 和 b5g6r5 像素数据

发布于 2024-10-10 10:41:22 字数 160 浏览 2 评论 0原文

我正在从文件中提取 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 技术交流群。

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

发布评论

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

评论(1

指尖上的星空 2024-10-17 10:41:22

您是否考虑过将 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?

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