gpt4 book ai didi

php - 创建 HTML 文件的 Javascript 中存储的数据的 PDF

转载 作者:行者123 更新时间:2023-11-28 14:35:08 26 4
gpt4 key购买 nike

我想创建使用 javascript 动态生成的饼图和图形的 pdf 文件。我正在使用 pdfdom 使用 php 创建 pdf 文件。

但问题是 pdfdom 无法创建存储在 javascript 中的数据的 pdf,这里是我的 HTML 文件的示例..

<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">

// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});

// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);

// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {

// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);

// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};

// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>

<body>
<!--Div that will hold the pie chart-->
<div id="chart_div"></div>
</body>
</html>

请问还有其他办法吗。。很急。。!!

最佳答案

替代方案:您是否尝试过 pchart http://pchart.sourceforge.net/ ?您可以使用 jquery 生成图表。您可以通过 AJAX(生成图像并制作 PDF)访问脚本,并且该脚本的响应您可以获得 PDF 文件的链接。

关于php - 创建 HTML 文件的 Javascript 中存储的数据的 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6844492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com