3

我有一个像byte[] pixels. 有没有办法在不复制数据的情况下从中创建bitmap对象?pixels我有一个小型图形库,当我需要在WinForms窗口上显示图像时,我只需将该数据复制到一个bitmap对象,然后我使用 draw 方法。我可以避免这个复制过程吗?我记得我在哪里见过它,但也许我的记忆力很差。

编辑:我试过这段代码,它可以工作,但这安全吗?

byte[] pixels = new byte[10 * 10 * 4];

pixels[4] = 255; // set 1 pixel
pixels[5] = 255;
pixels[6] = 255;
pixels[7] = 255;

// do some tricks
GCHandle pinnedArray = GCHandle.Alloc(pixels, GCHandleType.Pinned);
IntPtr pointer = pinnedArray.AddrOfPinnedObject();

// create a new bitmap.
Bitmap bmp = new Bitmap (10, 10, 4*10, PixelFormat.Format32bppRgb, pointer);

Graphics grp = this.CreateGraphics ();
grp.DrawImage (bmp, 0, 0);

pixels[4+12] = 255; // add a pixel
pixels[5+12] = 255;
pixels[6+12] = 255;
pixels[7+12] = 255;

grp.DrawImage (bmp, 0, 40);
4

2 回答 2

6

有一个构造函数接受指向原始图像数据的指针:

位图构造函数(Int32、Int32、Int32、PixelFormat、IntPtr)

例子:

byte[] _data = new byte[]
{
    255, 0, 0, 255, // Blue
    0, 255, 0, 255, // Green
    0, 0, 255, 255, // Red
    0, 0, 0, 255,   // Black
};

var arrayHandle = System.Runtime.InteropServices.GCHandle.Alloc(_data,
        System.Runtime.InteropServices.GCHandleType.Pinned);

var bmp = new Bitmap(2, 2, // 2x2 pixels
    8,                     // RGB32 => 8 bytes stride
    System.Drawing.Imaging.PixelFormat.Format32bppArgb,
    arrayHandle.AddrOfPinnedObject()
);

this.BackgroundImageLayout = ImageLayout.Stretch;
this.BackgroundImage = bmp;
于 2012-08-16T14:39:01.083 回答
0

你不能只使用:

System.Drawing.Bitmap.FromStream(new MemoryStream(bytes));

我认为这些方法调用不会进行任何复制,因为 MSDN 中没有任何内容表明:http: //msdn.microsoft.com/en-us/library/9a84386f

于 2012-08-16T14:51:28.517 回答