Phplot绘制图像并将其保存在文件中

时间:2017-02-22 18:07:06

标签: php phplot

我尝试在我的页面上显示图像并将其保存到文件中。 我的代码是:

//Define the object
$plot = new PHPlot(400,400,'res.png');
$plot->SetIsInline(True);
//Define some data
$example_data = array(
array('a',3),
array('b',5),
array('c',7),
array('d',8),
array('e',2),
array('f',6),
array('g',7)
);
$plot->SetDataValues($example_data);
//Turn off X axis ticks and labels because they get in the way:
$plot->SetXTickLabelPos('none');
$plot->SetXTickPos('none');
//Draw it
$plot->DrawGraph();

我尝试在html上调用它:

<img src="image.php">

但它只是将我的图像保存到输出文件而不会在浏览器中显示。 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

将代码的第一行更改为:

$plot = new PHPlot(400,400);