'****** 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)