您好我正在尝试使用pchart库但是我在CentOS vps中得到了一些与我的Windows服务器机器不同的奇怪结果。
代码是一个样本和基本的代码
/*
Naked: Naked and easy!
*/
// Standard inclusions
include("pChart/pData.class");
include("pChart/pChart.class");
// Dataset definition
$DataSet = new pData;
$DataSet->AddPoint(array(1,4,3,2,3,3,2,1,0,7,4,3,2,3,3,5,1,0,7));
$DataSet->AddSerie();
$DataSet->SetSerieName("Sample data","Serie1");
// Initialise the graph
$Test = new pChart(700,230);
$Test->setFontProperties("Fonts/tahoma.ttf",10);
$Test->setGraphArea(40,30,680,200);
$Test->drawGraphArea(252,252,252,TRUE);
$Test->drawScale($DataSet->GetData(),$DataSet->GetDataDescription(),SCALE_NORMAL,150,150,150,TRUE,0,2);
$Test->drawGrid(4,TRUE,230,230,230,70);
// Draw the line graph
$Test->drawLineGraph($DataSet->GetData(),$DataSet->GetDataDescription());
$Test->drawPlotGraph($DataSet->GetData(),$DataSet->GetDataDescription(),3,2,255,255,255);
// Finish the graph
$Test->setFontProperties("Fonts/tahoma.ttf",8);
$Test->drawLegend(45,35,$DataSet->GetDataDescription(),255,255,255);
$Test->setFontProperties("Fonts/tahoma.ttf",10);
$Test->drawTitle(60,22,"My pretty graph",50,50,50,585);
$Test->Render("Naked.png");
?>
窗口中生成的图像为Win http://img141.imageshack.us/img141/1210/nakedz.png
并且相同代码的CentOS VPS结果为Lix http://img208.imageshack.us/img208/1210/nakedz.png
我认为这可能与php_gd2.dll等版本有关。 这是我使用version
的pchart版本答案 0 :(得分:0)
这似乎是一个字体问题,因为我能看到的唯一区别是它缺少文本。没有CentOS安装,我无法测试,虽然我会尝试使用drawTitle($X,$Y,$Text,$Format="")
函数的简单图表,以及CentOS中的一些不同字体。