bitmap from byte array

45

bitmap from byte array -

Bitmap bmp;
using (var ms = new MemoryStream(imageData))
{
    bmp = new Bitmap(ms);
}

Comments

Submit
0 Comments