当前位置:首页 > PHP教程 > php图像处理 > 列表

php生成图形(Libchart)实例

发布:smiling 来源: PHP粉丝网  添加日期:2020-05-16 15:00:26 浏览: 评论:0 

统计图形就我们会常到的数据图形了,如果三个数组以图形显示或楼盘以图形走向我们都会要用到图形,下面介绍一个php LIbchart图形生成类.

统计图形就我们会常到的数据图形了,如果三个数组以图形显示或楼盘以图形走向我们都会要用到图形,下面我来介绍一个php LIbchart图形生成类吧,很用的有需要的朋友可参考。

简单全数字或英文的就可以直接使用下面类了(libchart类大家可自行百度下载),代码如下:

  1. <? 
  2.  /* 
  3.   update by Leo 
  4.   It's draw the pic of Sheet,and it will take all the num on the pic. 
  5.  */ 
  6.  require "./libchart/classes/libchart.php"
  7.  class drawPic{ 
  8.   var $chart
  9.   var $style
  10.   function drawPic($style="1",$width="500",$height="250"){ 
  11.    $this->style=$style
  12.    if($style==1){ 
  13.     //cylinder 
  14.     $this->chart = new VerticalBarChart($width,$height);  
  15.    }else if($style==2){ 
  16.     //line 
  17.     $this->chart = new LineChart($width,$height); 
  18.    }else if($style==3){ 
  19.     //Lump 
  20.     $this->chart = new PieChart($width,$height); 
  21.    }else
  22.     //cross 
  23.     $this->chart=new HorizontalBarChart($width,$height); 
  24.    } 
  25.   } 
  26.  
  27.   function draw($obj){ 
  28.  
  29.    if($this->style==1||$this->style=="1"){ 
  30.     //cylinder 
  31.     $dataSet = new XYDataSet() ; 
  32.     $this->chart->setTitle($obj->title);//title 
  33.     $arr=array(); 
  34.     $arr=$obj->dataArray; 
  35.     foreach($arr as $key => $val){ 
  36.      $dataSet->addPoint ( new Point($key,$val)) ; 
  37.     } 
  38.     $this->chart->setDataSet ( $dataSet ) ;  
  39.     $this->chart->render(); 
  40.    }else if($this->style==2||$this->style=="2"){ 
  41.     //line 
  42.     $this->chart->setTitle($obj->title);//title 
  43.     $arr=array(); 
  44.     $arr=$obj->dataArray; 
  45.     $i=0; 
  46.     $dataSet = new XYSeriesDataSet(); 
  47.     foreach($arr as $key => $val){ 
  48.      $serie{$i}= new XYDataSet(); 
  49.      foreach($val as $k => $v){ 
  50.       $serie{$i}->addPoint(new Point($k,$v)); 
  51.      } 
  52.      $dataSet->addSerie($key,$serie{$i}); 
  53.      $i=$i+1; 
  54.     } 
  55.     $this->chart->setDataSet($dataSet); 
  56.     $this->chart->render(); 
  57.    }else if($style==3){ 
  58.     //Lump 
  59.     $dataSet = new XYDataSet() ; 
  60.     $this->chart->setTitle($obj->title);//title 
  61.     $arr=array(); 
  62.     $arr=$obj->dataArray; 
  63.     foreach($arr as $key => $val){ 
  64.      $dataSet->addPoint ( new Point($key."($val)",$val)) ; 
  65.     } 
  66.     $this->chart->setDataSet ( $dataSet ) ;  
  67.     $this->chart->render(); 
  68.    }else
  69.     //cross 
  70.     $dataSet = new XYDataSet(); 
  71.     $this->chart->setTitle($obj->title);//title 
  72.     $arr=array(); 
  73.     $arr=$obj->dataArray; 
  74.     foreach($arr as $key => $val){ 
  75.      $dataSet->addPoint ( new Point($key,$val)) ; 
  76.     } 
  77.     $this->chart->setDataSet($dataSet);  
  78.     $this->chart->render(); 
  79.    } 
  80.   } 
  81.  
  82.  } 
  83.  class kkk{}; 
  84.  $n=new drawPic("4");//it will set 1 or 2 or 3 or 4 
  85.  $k=new kkk(); 
  86.  $k->dataArray=array("2000"=>"30","2001"=>"40","2002"=>"50","2003"=>"60","2004"=>"70","2005"=>"80","20020"=>"90");//style==1 or style=2 or style=4 
  87.  //$k->dataArray=array("2000"=>"30","2001"=>"40","2002"=>"50","2003"=>"60","2004"=>"70","2005"=>"80","20020"=>"90");//style==3 
  88.  //$k->dataArray=array("yi"=>array("2000"=>"30","2001"=>"40","2002"=>"50","2004"=>"60"),"er"=>array("2003"=>"60","2004"=>"70","2005"=>"80","20020"=>"90"),"san"=>array("33"=>"12","45"=>"56","89"=>"45","86"=>"49"));//style==2 and the years will show first array to block.(it will be show 2000 2001 2002 2004) 
  89.  $k->title="The Sheet title"
  90.  $n->draw($k); 
  91. ?> 

红色字体为调用。方法1,2,4为相同的数组。3为线性图,有可能有两条线或者多条线的比较(也可以单线)。

如果要使用中文可能会发现libchart中文乱码 了,下面找了一个办法

我们的应用主源代码如下:

  1. <?php 
  2.    header("content-type:image/png");   
  3.    require_once('libchart/classes/libchart.php');  
  4.  
  5.    $chart = new VerticalBarChart( 500 , 250 ) ; // 参数表示需要创建的图像的宽和高 
  6.    $dataSet = new XYDataSet() ; // 实例化一个 XY 轴数据对象 
  7.  
  8.      // 为这个对象增加四组数据集合, Point 对象的第一个参数表示 X 轴坐标, 
  9. // 第二个表示 Y 轴坐标 
  10.    $str = '二月'
  11.  
  12. $str = mb_convert_encoding($str"html-entities","utf-8" ); 
  13.  
  14. $dataSet -> addPoint ( new Point( "Jan 2005" , 273 )) ; 
  15.     $dataSet -> addPoint ( new Point( "$str" , 120 )) ; 
  16.     $dataSet -> addPoint ( new Point( "March 2005" , 442 )) ; 
  17.     $dataSet -> addPoint ( new Point( "April 2005" , 600 )) ; 
  18.      // 把这个数据集合传递给图形对象 
  19.     $chart -> setDataSet ( $dataSet ) ; 
  20.     // 设置图形的标题,并把它作为一个 png 文件渲染 
  21.     $chart -> setTitle ( "统计图" ) ; 
  22.  
  23.     //$chart -> render ( "demo/generated/demo1.png" ) ;  
  24.     // 这里需要一个路径和文件名称  
  25.     //就这么简单一个像下图一样美丽的柱状图就出来了 
  26.     $chart -> render () ;  
  27. ?> 

标红字的地方是为了解决中文乱码的。

2、标题乱码:

默认显示中文是乱码,这是由于编码的原因,做如下修改:

首先,更改libchar/libchart/classes/view/chart/Chart.php,找到如下内容:

  1. public function setTitle($title) {            
  2.     $this->plot->setTitle($title); 

更改为:

  1. public function setTitle($title) { 
  2.         $title = mb_convert_encoding($title"html-entities","utf-8" ); 
  3.            $this->plot->setTitle($title); 

第三步:就是上面某个博客里讲到的:

1、自己写的使用Libchart 库生成图表的php 文件以utf-8编码保存

2、找几个中文字体库,比如华文行楷、宋体等等,复制到libchart fonts目录下

3、修改libchart classes目录下的text.php 文件

第47、48行,代码如下:

  1. $this->fontCondensed = dirname(__FILE__) . "/../fonts/DejaVuSansCondensed.ttf";  
  2. $this->fontCondensedBold = dirname(__FILE__) . "/../fonts/DejaVuSansCondensed-Bold.ttf"

改为代码如下:

  1. $this->fontCondensed = dirname(__FILE__) . "/../fonts/你找来的中文字体";  
  2. $this->fontCondensedBold = dirname(__FILE__) . "/../fonts/你找来的中文字体"

我修改的代码如下:

  1. public function Text() { 
  2.     $baseDir = dirname(__FILE__) . "/../../../"
  3.  
  4.     // Free low-res fonts based on Bitstream Vera <http://dejavu.sourceforge.net/wiki/> 
  5.    $this->fontCondensed = $baseDir . "fonts/FANGZHENGFANGSONG.ttf"
  6.     $this->fontCondensedBold = $baseDir . "fonts/FANGZHENGFANGSONG.ttf"
  7.    } 

FANGZHENGFANGSONG.ttf 这个文件是我找的方正仿宋简体字库,我把中文名字改成那个样子了,其实不改也是可以的。

Tags: php生成图形 Libchart

分享到: