'****** THIS CODE VB.NET on PC ***********************
Dim bytes = My.Computer.FileSystem.ReadAllBytes("X:\image.jpg")
path = ""
For i = 0 To bytes.Length - 1
If Conversion.Hex(bytes(i)).ToString.Length = 1 Then
path = path & "0" & Conversion.Hex(bytes(i)) '.ToString
Else
path = path & Conversion.Hex(bytes(i)) '.ToString
End If
boy = path.Length
Next i
send_to_phone(path)
I recived HEx data from server.
After I save to phone image file "test.jpg"
I cant save image. (I revice all hex data from server "data ="FF25AB1678A1B5C5.......")
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.