可以制作灰度BMP文件吗?
我正在尝试制作一个将 8 位灰度图像输出到 bmp 文件的程序。我发现8位BMP文件是有索引的。是否可以省略颜色表,只在颜色表中放入值而不是索引?或者BMP格式不允许这样?
I am trying to make a program that outputs a 8-bit grayscale image to bmp file. I have found out that 8-bit BMP files are indexed. Is it possible to omit the color table and just put values instead of indexes in the color table? Or BMP format does not allow this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您仍然需要 LUT,但创建它非常简单。它只有 256 个条目,其中红色、绿色和蓝色分量都等于灰度强度。
You still need the LUT but it's very simple to create it. It's just 256 entries where the red, green and blue components are all equal to the grey scale intensity.