JpGraph:没有错误,但破碎的图片

时间:2013-04-23 18:43:46

标签: php jpgraph

我用JPGraph制作图表,但我有点问题。

没有显示错误,但图片是“破碎的图片”。

这是我的代码:

$graph = new Graph(1000,300);
$graph->img->SetMargin(40,30,50,40);    
$graph->SetScale("textlin");
$graph->title->Set("Graph");

$graph->ygrid->Show();
$graph->ygrid->SetColor('blue@0.7');
$graph->ygrid->SetLineStyle('dashed');

$graph->xgrid->Show();
$graph->xgrid->SetColor('red@0.7');
$graph->xgrid->SetLineStyle('dashed');

$graph->title->SetFont(FF_ARIAL,FS_BOLD,11);

$bigCourbe = array();
$i = 0;
foreach($bigData as $data)
{
    var_dump($data);

    $courbe = new LinePlot($data);
    $courbe->value->Show();

    $courbe->value->SetFont(FF_ARIAL,FS_NORMAL,9);
    $courbe->value->SetFormat('%d');

    $courbe->mark->SetType(MARK_FILLEDCIRCLE);
    $courbe->mark->SetFillColor("green");
    $courbe->mark->SetWidth(2);

    $courbe->SetWeight(10);         

    echo $function[$i];
    $courbe->SetLegend($function[$i++]);

    $bigCourbe[] = $courbe;
}

$graph->xaxis->title->Set("Heures");
$graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
$graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);

foreach ($bigCourbe as $elem) {
        $graph->Add($elem);
}

//$graph->Stroke();

所以,结果似乎很好:

array (size=24)
0 => string '0.000' (length=5)
1 => string '0.000' (length=5)
2 => string '0.000' (length=5)
3 => string '0.000' (length=5)
4 => string '0.000' (length=5)
5 => string '0.000' (length=5)
....
Index HC <- it's the $function[$i] var

array (size=24)
0 => string '0.200' (length=5)
1 => string '0.200' (length=5)
2 => string '0.100' (length=5)
3 => string '0.200' (length=5)
4 => string '0.200' (length=5)
5 => string '0.200' (length=5)
....
Index HP

array (size=24)
0 => string '0.000' (length=5)
1 => string '0.000' (length=5)
2 => string '0.000' (length=5)
3 => string '0.000' (length=5)
4 => string '0.000' (length=5)
5 => string '0.000' (length=5)
Index HPTE

array (size=24)
0 => string '0.200' (length=5)
1 => string '0.200' (length=5)
2 => string '0.100' (length=5)
3 => string '0.200' (length=5)
4 => string '0.200' (length=5)
5 => string '0.200' (length=5)
....
Total Heure

我没有看到问题...

如果我删除调试,并取消注释$ graph-&gt; Stroke();线。我有:

enter image description here

你能帮助我吗?

提前谢谢。

3 个答案:

答案 0 :(得分:1)

在我的情况下(php 7.1.0)它是不推荐的消息

刚刚放

ini_set('display_errors', 0);

位于脚本顶部,然后重试。

注释掉$graph->Stroke();,看看你有什么错误(或警告)

答案 1 :(得分:0)

如何显示图表?你有HTML页面吗?请显示HTML代码。 我有一个类似的问题,我没有错误信息,但得到破碎的图像图标。

jpGraph can't include PHP file

我建议的一件事是添加行

//save to file
$fileName = "/tmp/imagefile.png";
$graph->img->Stream($fileName);

如果文件中的图像是正确的,那么您可以排除图形生成代码。

答案 2 :(得分:0)

我知道这是一个老问题,但我遇到了同样的问题并通过删除<?php之前的所有内容来修复它。

有人在下面的链接中建议 - 检查1.b。

Solution Source