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
Will this work? I have no idea what format your string is in, so some massaging may be necessary.
Dim strAsBytes() as Byte = new System.Text.UTF8Encoding().GetBytes(Text) Dim ms as New System.IO.MemoryStream(strAsBytes)