I\'ve download an image from the Internet and converted to a String (This is not changeable)
Dim Request As System.Net.WebRequest = _ System.Net.WebRequest
Converting binary data to a string in the way you have shown will render it useless. You can't pull it pack out. The text encoding hoses it.
You need to use Base64 - like @Marc shows.