如何在编程语言C#上将32位rgb转换为16位rgb?
Possible Duplicate:
How to convert bitmap image with 32bit to 16bit color quality in C#
I have problem.
I need to convert a 32bit RGB image to 16bit RGB using c#.
Can anyone suggest a starting point for me?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将每个 R、G 和 B 值除以 2 ^ 16 或 65536 - 将它们向右移动 16 位(这可能是性能提示) - 然后重新组合结果。
Divide each R, G and B value by 2 ^ 16, or 65536 - shifting them 16 bits to the right (this may be a performance hint) - and then recombine the results.