Well, i figured out how to convert a bitmap into a byte array. I use this to save signatures from a pocket pc emulator. How would i convert the byte array back to a bitmap??
I tried using the code below:
but that doesn't seem to be working. i get an "Exception"
error on BackGroundImage = New bitmap(imagefilename)
Any thoughts??
I tried using the code below:
Code:
Dim BackGroundImage As Bitmap
Dim ImageFileName As String = "path"
BackGroundImage = New Bitmap(ImageFileName)
GraphicsHandle = Graphics.FromImage(BackGroundImage)
error on BackGroundImage = New bitmap(imagefilename)
Any thoughts??