基于这个网络,我喜欢使用那个灯箱来显示由这个 php 代码生成的图像:
<?php
include "libchart/classes/libchart.php";
header("Content-type: image/png");
$chart = new VerticalBarChart(700,250);
$dataSet = new XYDataSet();
$dataSet->addPoint(new Point("Bekasi", 873));
$dataSet->addPoint(new Point("Jakarta", 10));
$chart->setDataSet($dataSet);
$chart->setTitle("UTLC testing chart");
$chart->render();
?>
我的问题:我们可以使用带有标题内容的 php 代码在该灯箱中生成图像并显示它吗?
谢谢任何人,对不起我的英语不好。