public static System.Drawing.Bitmap ImageArrayToBitmap( byte[] imageData)
{
System.IO.MemoryStream mstream =
new System.IO.MemoryStream(imageData, 0, imageData.Length);
mstream.Write(imageData, 0, imageData.Length);
System.Drawing.Bitmap newBitmap = new System.Drawing.Bitmap(mstream);
mstream.Flush();
mstream.Dispose();
return newBitmap;
}
85c847d2-518f-4608-a978-099d9fb90d5c|0|.0