2

我想知道是否可以在 FPDF 中创建垂直柱形图,如下图所示:

在此处输入图像描述

事实上,我想显示一个单独的垂直条,分成子部分来代表不同类别的不同百分比。

是否可以使用 FPDF,如果可能的话,请给我一些提示,如何在使用 FPDF 创建的 pdf 文件中绘制它。

任何帮助将不胜感激。

4

1 回答 1

1

作为图像插入

// Insert a chart in the top-left corner at 300 dpi
$pdf->Image('my-vertical-column-chart.php',10,10,-300);
// Insert a chart as dynamic image from a URL
$pdf->Image('http://www.myhost.com/mysite/my-vertical-column-chart.php?chartparam=value',60,30,90,0,'PNG');

文件my-vertical-column-chart.php可能是任何类型的条形图图像生成器,例如:

我在 Google Drive 中完成并作为图像共享。这是完成工作的最快方式;

于 2012-08-17T02:50:40.650 回答