bytes to io.stream

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an array of bytes that contains a bitmap file. I want to convert the
array into IO.Stream and load the image using
MyPictureBox.Image.FromStream(MyStream).
How can I do the conversion?

Thanks.
 
I have an array of bytes that contains a bitmap file. I want to convert the
array into IO.Stream and load the image using
MyPictureBox.Image.FromStream(MyStream).
How can I do the conversion?

Dim MyStream As Stream = New MemoryStream(myByteArray)



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top