Hi!
I am converting byte() to Bmp . While Converting I m getting this exception :
Invalid Parameter Used.THis is an Arument Exception. I m using following code.
Function ByteToImage(ByV al Input As Byte()) As Bitmap
Dim ms As New IO.MemoryStream (Input)
Return Bitmap.FromStre am(ms)
End Function