我想生成一个包含一些信息的PDF文件,然后将其发送到某个电子邮件地址。 PDF中的信息将包含我使用jpgraph生成的PIE。 当然,图表是动态的,因此不能生成静态PIE并将其用作静态图像。对于我生成的每个PDF,饼图都是不同的。 但我不知道怎么做(如何将其包含在tcpdf中)。 这是我的图表:
<?php // content="text/plain; charset=utf-8"
require_once ('jpgraph/jpgraph.php');
require_once ('jpgraph/jpgraph_pie.php');
$sta = $_REQUEST['start'];
$sto = $_REQUEST['end'];
// Some data
$data = array($sta,$sto);
$color = array('#2ecc71','#e74c3c');
// A new pie graph
$graph = new PieGraph(400,400,'auto');
// Don't display the border
$graph->SetFrame(false);
// Uncomment this line to add a drop shadow to the border
// $graph->SetShadow();
// Setup title
$graph->title->Set("Procentaj realizat");
$graph->title->SetFont(FF_FONT1,FS_BOLD,18);
$graph->title->SetMargin(8); // Add a little bit more margin from the top
// Create the pie plot
$p1 = new PiePlotC($data);
// Set size of pie
$p1->SetSize(0.35);
// Label font and color setup
$p1->value->SetFont(FF_FONT1,FS_BOLD,12);
$p1->value->SetColor('white');
$p1->value->Show();
// Setup the title on the center circle
$p1->midtitle->Set("Procent\nraspunsuri corecte\n83%");
$p1->midtitle->SetFont(FF_FONT1,FS_NORMAL,14);
// Set color for mid circle
$p1->SetMidColor('white');
// Use percentage values in the legends values (This is also the default)
$p1->SetLabelType(PIE_VALUE_PER);
$p1->SetSliceColors($color);
// The label array values may have printf() formatting in them. The argument to the
// form,at string will be the value of the slice (either the percetage or absolute
// depending on what was specified in the SetLabelType() above.
$lbl = array("corecte\n%.1f%%","gresite\n%.1f%%");
$p1->SetLabels($lbl);
// Uncomment this line to remove the borders around the slices
// $p1->ShowBorder(false);
// Add drop shadow to slices
$p1->SetShadow();
// Explode all slices 15 pixels
$p1->ExplodeAll(15);
// Add plot to pie graph
$graph->Add($p1);
// .. and send the image on it's marry way to the browser
$graph->Stroke();
?>
所以上面的代码在一个名为mychart.php的文件中。我想在tcpdf文件中包含这个结果。我怎么能这样做?
我使用jpgraph并不是强制性的。我看到谷歌图表看起来非常完美,看起来很容易使用。 我可以用这个:
<html>
<head>
<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>
google.load('visualization', '1', {packages:['gauge']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Label', 'Value'],
['Corecte', 83]
]);
var options = {
width: 400, height: 250,
redFrom: 90, redTo: 100,
yellowFrom:75, yellowTo: 90,
minorTicks: 5
};
var chart = new google.visualization.Gauge(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id='chart_div'></div>
</body>
</html>
然而,当包含到tcpdf中时......他们仍然有问题...我的意思是,我在tcpdf的HTML中添加一个脚本,问题是它似乎tcpdf只采用了body标签... 那我该怎么办? 请帮忙。 感谢
答案 0 :(得分:2)
我最近遇到了TCPDF中嵌入的图形的相同要求。 Click here to see my code
<强>解释强>
您需要做的是使用ob_start()
和ob_end_clean()
捕获JPGraph的输出,然后使用TCPDF::Image()
显示图形,前缀为@符号(告诉TCPDF,它正在处理图像数据流而不是图像文件名。你可以see more about this in the TCPDF examples。
您可能需要使用图形尺寸以及TCPDF::setImageScale()
和TCPDF::setJPEGQuality()
方法来使图形更清晰。我发现规模值为1.7,质量值为80,提供了良好的平衡。