I have a byte[] which create from a stream which i need to create a Bitmap image
i was trying
MemoryStream ms = new MemoryStream(btarr);
Bitmap img = new Bitmap();
img=img.FromStream(ms);
im sure that btarr is filled with stream bytes and valid bitmap content , but this always provide the img as null .. any idea?
this method will do the job: