0

我正在尝试将原始 RGB24 数据数组转换为 C# 中的位图,但这样做时遇到了麻烦。

这是对应的代码:

using System.Runtime.InteropServices;

byte[] frame;
//... code
frame = new byte[1280 * 960]; 

// code to get the frame

System.Runtime.InteropServices.GCHandle pinnedArray =   
      GCHandle.Alloc(frame, GCHandleType.Pinned);
IntPtr pointer = pinnedArray.AddrOfPinnedObject();

Bitmap bmp = new Bitmap(width, height, 3 * width, 
        PixelFormat.Format24bppRgb, pointer);

MemoryStream JPEGStream = new MemoryStream ();
bmp.Save(filepath, System.Drawing.Imaging.ImageFormat.Bmp);**

我得到一个

“System.Drawing.dll 中发生了‘System.AccessViolationException’类型的未处理异常”

使用上面的代码。

但是,如果我改变:

Bitmap bmp = new Bitmap(width, height, stride, 
      PixelFormat.Format24bppRgb, pointer);

Bitmap bmp = new Bitmap(width/3, height/3, stride, 
      PixelFormat.Format24bppRgb, pointer);

我没有崩溃并获得 3 张图像,覆盖了总面积的 1/3。我应该得到的是覆盖整个 1280 X 960 区域空间的单个图像。

4

2 回答 2

2

Format24bppRgb表示一个像素占用 24 位(3 个字节),而不是您在样本中预先分配的 1。

更改分配的字节数以考虑每像素位数(以字节为单位,如果使用不同的大小,请不要忘记填充):

frame = new byte[1280 * 960 * 3]; // 24bpp = 3 bytes
于 2013-08-24T02:00:14.470 回答
0

你试过width-1和height-1吗?

于 2013-10-02T02:42:48.463 回答