. , , - . :
Bitmap bmp;
using (var ms = new MemoryStream(data))
{
bmp = new Bitmap(ms);
}
bitmap = bmp;
Bitmap :
Bitmap.
, MemoryStream . , Bitmap, -, . (EDIT: , , 1MiB, FromStream JPEG. JPEG < 1MiB . JPEG 1MiB, )
, Microsoft . , , ( http-), , , :
using (var ms = new MemoryStream(data))
{
bmp = new Bitmap(ms);
Rectangle cloneRect = new Rectangle(0, 0, bmp.Width, bmp.Height);
System.Drawing.Imaging.PixelFormat format = bmp.PixelFormat;
this.bitmap = bmp.Clone(cloneRect, bmp.PixelFormat);
}
, , , , , . Graphics.FromImage() , . , .