I am using the Google Charts API
in my .NET
application and I would like to programmatically save the chart rendered as an image by passing the chat URI in an AJAX
request to the server.
The problem is that the URI of the chart is a data
URI scheme so it looks like this: data:image/png;base64,abcdef...
I tried to request this URI with the HttpClient
, WebClient
and WebRequest
classes but all of these launched an exception saying that the URI prefix is not recognized or not handled...
Does anyone knows wich library I can use to request this kind of URI?
By exploring the data URI scheme by myself, I finally understood that I didn't need to send a request to retrieve the image, as the bytes were already in the URI.
I managed to decode the base 64 string to an 8 bit stream and create the image :)
Below is a short example of my working code :)