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

PHP生成条形图的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-03 15:07:51 浏览: 评论:0 

这篇文章主要介绍了PHP生成条形图的方法,可实现生成柱状的条形图,适用于一些类似柱状图显示报表的场合,具有一定的实用价值,需要的朋友可以参考下

本文实例讲述了PHP生成条形图的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php 
  2.   // create an array of values for the chart. These values  
  3.   // could come from anywhere, POST, GET, database etc.  
  4.   $values = array(23,32,35,57,12,3,36,54,32,15,43,24,30); 
  5.  
  6.   // now we get the number of values in the array. this will  
  7.   // tell us how many columns to plot  
  8.     $columns  = count($values); 
  9.  
  10.   // set the height and width of the graph image 
  11.  
  12.     $width = 300;  
  13.     $height = 200; 
  14.  
  15.   // Set the amount of space between each column  
  16.     $padding = 5; 
  17.  
  18.   // Get the width of 1 column  
  19.     $column_width = $width / $columns ; 
  20.  
  21.   // set the graph color variables  
  22.     $im        = imagecreate($width,$height);  
  23.     $gray      = imagecolorallocate ($im,0xcc,0xcc,0xcc);  
  24.     $gray_lite = imagecolorallocate ($im,0xee,0xee,0xee);  
  25.     $gray_dark = imagecolorallocate ($im,0x7f,0x7f,0x7f);  
  26.     $white     = imagecolorallocate ($im,0xff,0xff,0xff); 
  27.  
  28.   // set the background color of the graph  
  29.     imagefilledrectangle($im,0,0,$width,$height,$white); 
  30.  
  31.  
  32.   // Calculate the maximum value we are going to plot  
  33.   $max_value = max($values); 
  34.  
  35.   // loop over the array of columns  
  36.     for($i=0;$i<$columns;$i++)  
  37.         { 
  38.     // set the column hieght for each value  
  39.         $column_height = ($height / 100) * (( $values[$i] / $max_value
  40.  
  41. *100);  
  42.     // now the coords 
  43.         $x1 = $i*$column_width;  
  44.         $y1 = $height-$column_height;  
  45.         $x2 = (($i+1)*$column_width)-$padding;  
  46.         $y2 = $height
  47.  
  48.         // write the columns over the background  
  49.         imagefilledrectangle($im,$x1,$y1,$x2,$y2,$gray); 
  50.  
  51.         // This gives the columns a little 3d effect  
  52.         imageline($im,$x1,$y1,$x1,$y2,$gray_lite);  
  53.         imageline($im,$x1,$y2,$x2,$y2,$gray_lite);  
  54.         imageline($im,$x2,$y1,$x2,$y2,$gray_dark);  
  55.         } 
  56.  
  57.    // set the correct png headers  
  58.    header ("Content-type: image/png");  
  59.   // spit the image out the other end  
  60.   imagepng($im);  
  61. ?>

Tags: PHP生成条形图

分享到:

相关文章