Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# bytes to image

MemoryStream ms = new MemoryStream(byteArrayIn,0,byteArrayIn.Length);
ms.Position = 0; // this is important
returnImage = Image.FromStream(ms,true);
 
PREVIOUS NEXT
Tagged: #bytes #image
ADD COMMENT
Topic
Name
9+7 =