I'm trying to export fusionChart Images on the Server Without Rendering in a Browser.. i would like to use the image in tcpdf
i followed the example here http://www.fusioncharts.com/blog/2013/03/how-to-save-charts-as-images-at-server-side/
< ?php
$webpageURLWithChart = "mychart.php";
$outputImageFileName = "savedImage.png";
$delay = 500;
$shellout = shell_exec("wkhtmltoimage --javascript-delay $delay $webpageURLWithChart $outputImageFileName" );
echo $shellout;
?>
mychart.php is working fine but image is not generated
path is set C:\Program Files\wkhtmltopdf
any help is much apreciated