当图像为 16bpp 灰度时,从位图获取彩色图像
问题一。 我自己的相关问题
我在这里问了下一个问题
现在第二个问题是。
当我尝试从原始像素数据打开 16 位(单色)图像时 然后我收到错误。 因为我在创建位图时使用 PixelFormat.Format16bppGrayscale,
Bitmap bmp = new Bitmap(Img_Width, Img_Height,PixelFormat.Format16bppGrayscale);
所以用 google 搜索并发现 Format16bppGrayscale 不支持,所以我修改了我的代码,如下所示。
PixelFormat format = PixelFormat.Format16bppRgb565;
Bitmap bmp = new Bitmap(Img_Width, Img_Height, format);
Rectangle rect = new Rectangle(0, 0, Img_Width, Img_Height);
BitmapData bmpData = bmp.LockBits(rect, ImageLockMode.ReadWrite, format);
Marshal.Copy(rawPixel, 0, bmpData.Scan0, rawPixel.Length);
bmp.UnlockBits(bmpData);
令人惊奇的是,我现在得到了图像,因为我改变了像素格式。 但问题是我的单色(灰度)图像看起来有各种颜色。
我怎样才能得到原来的样子。 我尝试了几种灰度方法但没有成功 请给我一些不安全的代码。 谢谢,
Problem No1.
My own Related problem
I asked the next question here
Now the Problem No 2 is.
When i am trying to open 16 Bit (Monocrome ) images from their raw pixel data
then i am getting Error.
Because i am using PixelFormat.Format16bppGrayscale on creation of Bitmap like
Bitmap bmp = new Bitmap(Img_Width, Img_Height,PixelFormat.Format16bppGrayscale);
So googled and found Format16bppGrayscale not supported so i modifed my code like below.
PixelFormat format = PixelFormat.Format16bppRgb565;
Bitmap bmp = new Bitmap(Img_Width, Img_Height, format);
Rectangle rect = new Rectangle(0, 0, Img_Width, Img_Height);
BitmapData bmpData = bmp.LockBits(rect, ImageLockMode.ReadWrite, format);
Marshal.Copy(rawPixel, 0, bmpData.Scan0, rawPixel.Length);
bmp.UnlockBits(bmpData);
Amazing thing is that i am getting the image now because i change the pixelFormat.
But problem is that My monocrome (Grayscale) image look in various color.
How can i get the original appearance. I tried several grayscale method but not successful
Please give me some unsafe code.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BobPowell 的 GDI+ 常见问题解答中有一些有关灰度的内容 。 .NET 中的 16 bpp 根本不起作用。 我必须以 32 bpp 完成所有操作,并借助外部工具进行转换。 幸运的是(?)我大部分时间都坚持使用 TIFF 图像。 另外,此帖子可能会有所帮助。
BobPowell's GDI+ FAQ has a bit about greyscale. The 16 bpp in .NET just doesn't work. I have to do everything in 32 bpp and resort to external tools for conversion. Luckily (?) I get to stick with TIFF images most of the time. Also, this thread might help.
您需要将调色板更改为灰度调色板。 8bppIndexed 的默认调色板是 256 色。 你可以这样改变它:
You need to change the pallet to a greyscale pallet. The default pallet for 8bppIndexed is 256 colour. You can change it like this: