Converting Byte array to jpeg image on compact framewrok

  • Thread starter Thread starter okaminer
  • Start date Start date
O

okaminer

Hello
I need to present jpeg image in picture box in compact framework

I have the picture as byte[] (arrya) and I need to convert it to Image

Any one has any idea how to do this in the compact framework where we
don't have
FromStream function?
 
sth. like:

MemoryStream myStream = new MemoryStream(myByteArray);
Bitmap bm = new Bitmap( myStream ); ?


Ruediger
 
Back
Top