Thank you for your reply!
I now got a little further and was able to convert my google charts to a png on my webserver.
(
https://developers.google.com/chart/int ... s/printing)
It creates an URI in base 64.
With my browser I am now able to simply download the png or just copy the base64 format from the adress line.
Is it now somehow possible to just get this base 64 code with my ESP32 from my webserver?
Currently I am just able to get the xml code and print it on serial with
Code: Select all
char server[] = "IP adress of my webserver";
if (client.connect(server, 80)) {
Serial.println("connected");
client.println("GET HTTP/1.1");
client.println("Host: server");
client.println("Connection: close");
client.println();}
if (client.available()) {
while (client.connected()) {
char c = client.read();
Serial.print{c}
}
}
With this i unfortunately i dot get the base 64 code of the displayed image but only my "chart.getImageURI()" java command.
Is it possible to get the full URI of the png here?