Hello friends,

my problem is with google chart api. When I create an chart with
Qt Code:
  1. http://chart.apis.google.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World
To copy to clipboard, switch view to plain text mode 

I do right click on the picture to get the pie as image.

with php I can get it dynamically like this
Qt Code:
  1. <?php
  2. file_put_contents('graph.png');
  3. file_get_contents('http://chart.apis.google.com/chart?cht=p3&chd=t:60,40&chs=250x100&chl=Hello|World");
  4. ?>
To copy to clipboard, switch view to plain text mode 

Is there a way to get the image with QT classes ????