当图像为 16bpp 灰度时,从位图获取彩色图像

发布于 2024-07-19 01:55:28 字数 921 浏览 3 评论 0原文

问题一。 我自己的相关问题

我在这里问了下一个问题

现在第二个问题是。

当我尝试从原始像素数据打开 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 技术交流群。

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

发布评论

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

评论(2

弄潮 2024-07-26 01:55:28

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.

〃温暖了心ぐ 2024-07-26 01:55:28

您需要将调色板更改为灰度调色板。 8bppIndexed 的默认调色板是 256 色。 你可以这样改变它:

ColorPalette pal = myBitmap.Palette;

for (int i = 0; i < pal.Entries.Length; i++)
    pal.Entries[i] = Color.FromArgb(i, i, i);

myBitmap.Palette = pal;

You need to change the pallet to a greyscale pallet. The default pallet for 8bppIndexed is 256 colour. You can change it like this:

ColorPalette pal = myBitmap.Palette;

for (int i = 0; i < pal.Entries.Length; i++)
    pal.Entries[i] = Color.FromArgb(i, i, i);

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