如何在C#中将8位灰度图像转换为byte []数组?

时间:2011-02-11 09:44:58

标签: c# .net image bitmap bytearray

如何将8位灰度图像的数据放入字节数组?我尝试了以下代码:

private byte[] loadBitmap(string filename, int width, int height)
{
    byte[] data = new byte[width * height];
    BitmapData bmpData = null;
    Bitmap slice = new Bitmap(filename);
    Rectangle rect = new Rectangle(0, 0, slice.Width, slice.Height);
    bmpData = slice.LockBits(rect, ImageLockMode.ReadOnly, PixelFormat.Format8bppIndexed);
    int size = bmpData.Height * bmpData.Stride;
    System.Runtime.InteropServices.Marshal.Copy(bmpData.Scan0, data, 0, size);
    slice.UnlockBits(bmpData);
    return data;
}

但是由于Format8bppIndexed,数据数组的结果有一些错误。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我不知道这是否可以帮助你,但我会尝试。

byte[] buffer = null;
System.Drawing.Image newImg = img.GetThumbnailImage(width, height, null, new System.IntPtr());
using (MemoryStream ms = new MemoryStream()) {
    newImg.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
}
buffer = ms.ToArray();

这只是我已经做过的一种方式。

希望有所帮助