I read an image in an array, imgAray[].
Now I will instead to make an image object from a file
(System.Drawing.Image.FromFile(Filename) )
make it from this array.
Something like :
System.Drawing.Image.From???(imgArray)
I see the image object has a Method:
System.Drawing.Image.FromStream
If this is the only way to do it, how I write
ImgArray to the stream
?
Now I will instead to make an image object from a file
(System.Drawing.Image.FromFile(Filename) )
make it from this array.
Something like :
System.Drawing.Image.From???(imgArray)
I see the image object has a Method:
System.Drawing.Image.FromStream
If this is the only way to do it, how I write
ImgArray to the stream
?