网站地图    收藏   

主页 > php专栏 > php图像处理 >

PHP生成条形图

来源:未知    时间:2014-11-27 22:59 作者:xxadmin 阅读:

[导读] ?php //createanarrayofvaluesforthechart.Thesevalues //couldcomefromanywhere,POST,GET,databaseetc. $values = array (23,32,35,57,12,3,36,54,32,15,43,24,30); //nowwegetthenumberofvaluesinthearray.thiswill //tellushowmanycolumnstoplot $columns...

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

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论