Search found 1 match

Go to advanced search

by rampatter
Mon Nov 30, 2015 12:14 am
Forum: Technical Support
Topic: [SOLVED] Convert picture bytearray to image source
Replies: 5
Views: 9019

Re: Convert picture bytearray to iameg source

Try this

using (MemoryStream mStream = new MemoryStream(byteArrayIn))
{
return Image.FromStream(mStream);
}

Full Source : ByteArray to Image

Patter

Go to advanced search

 

 

cron