根据我在 SO 和 web 上的研究,保存位图时的 GDI+ 通用错误显然是一个常见问题。给出以下简化代码段:
byte[] bytes = new byte[2048 * 2048 * 2];
for (int i = 0; i < bytes.Length; i++)
{
// set random or constant pixel data, whatever you want
}
Bitmap bmp = new Bitmap(2048, 2048, PixelFormat.Format16bppGrayScale);
BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, 2048, 2048), ImageLockMode.ReadWrite, bmp.PixelFormat);
System.Runtime.InteropServices.Marshal.Copy(bytes, 0, bmpData.Scan0, 8388608);
bmp.UnlockBits(bmpData);
bmp.Save(@"name.bmp");
这会导致 0x80004005 通用错误。据说通常的原因是组件上的锁,但我在这里看不到任何东西。我只是瞎了吗?我保存的路径是存在的,当然只创建了一个空的bmp文件(0B)。
背景:我从使用 C++/CLI 包装器传输到 .NET 的相机驱动程序中获取像素数据,因此上面的 Bitmap 对象由函数调用返回。但是由于这个小例子已经失败了,我猜适配器没有问题。
任何建议都非常感谢!