我在我的项目中使用fusionchart,我想在tcpdf中使用fusionchart ...图表在我的php页面中正确加载,但不是在tcpdf生成的pdf中
好吧我想我需要将图表保存为图形然后在TCPDF中包含该图形我在我的php页面中尝试了类似这样的东西没有保存
$webpageURLWithChart = "chart1.php";
$outputImageFileName = "images/charts/savedImage.jpg";
$delay = 500;
$shellout = shell_exec("C:\Program Files\wkhtmltopdf\bin\wkhtmltoimage.exe --javascript-delay $delay $webpageURLWithChart $outputImageFileName" );
echo $shellout;
http://www.fusioncharts.com/blog/2013/03/how-to-save-charts-as-images-at-server-side/