如何将pChart创建的图像保存到文件中?

时间:2011-07-22 05:19:26

标签: php pchart

我使用以下内容:

$chartImage->autoOutput('/statistics/'.$image.'.png');

问题是此代码将图像输出到浏览器。如果它将图像保存到我指定的目录和名称的文件中,我更喜欢它。我该怎么做呢?我正在查看pChart wiki,它对所有这些pCache的东西非常困惑。我不需要任何缓存或类似的东西...我只是想保存图像。

3 个答案:

答案 0 :(得分:9)

尝试使用:

$chartImage->render("image_name.png");

它在1.x中对我有用,不知道2.x - 没用过它。

答案 1 :(得分:1)

如果没办法,那就

ob_start();
$chartImage->autoOutput('/statistics/'.$image.'.png');
$image = ob_get_contents();
ob_end_clean();
$file = fopen('<path_to_file>', 'wb');
fputs($file, $image);
fclose($file);

答案 2 :(得分:1)

$imageOut = 'grafico';
$chart->drawFromJPG($width, $height, "{$imageOut}.jpg");
$chart->render("{$imageOut}.jpg");

我的工作非常好。