程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP的生成條形圖

PHP的生成條形圖

編輯:關於PHP編程

PHP的生成條形圖
由於overwhelmning為廣東的需求有關的例子,這個最重要的是產生從一個數組條形圖要

求。當然,這些可以很容易地從任何來源數目,以及投入到一個數組


<?php

  // create an array of values for the chart. These values
  // could come from anywhere, POST, GET, database etc.
  $values = array(23,32,35,57,12,3,36,54,32,15,43,24,30);

  // now we get the number of values in the array. this will
  // tell us how many columns to plot
    $columns  = count($values);

  // set the height and width of the graph image

    $width = 300;
    $height = 200;

  // Set the amount of space between each column
    $padding = 5;

  // Get the width of 1 column
    $column_width = $width / $columns ;

  // set the graph color variables
    $im        = imagecreate($width,$height);
    $gray      = imagecolorallocate ($im,0xcc,0xcc,0xcc);
    $gray_lite = imagecolorallocate ($im,0xee,0xee,0xee);
    $gray_dark = imagecolorallocate ($im,0x7f,0x7f,0x7f);
    $white     = imagecolorallocate ($im,0xff,0xff,0xff);

  // set the background color of the graph
    imagefilledrectangle($im,0,0,$width,$height,$white);


  // Calculate the maximum value we are going to plot
  $max_value = max($values);

  // loop over the array of columns
    for($i=0;$i<$columns;$i++)
        {
    // set the column hieght for each value
        $column_height = ($height / 100) * (( $values[$i] / $max_value)

*100);
    // now the coords
        $x1 = $i*$column_width;
        $y1 = $height-$column_height;
        $x2 = (($i+1)*$column_width)-$padding;
        $y2 = $height;

        // write the columns over the background
        imagefilledrectangle($im,$x1,$y1,$x2,$y2,$gray);

        // This gives the columns a little 3d effect
        imageline($im,$x1,$y1,$x1,$y2,$gray_lite);
        imageline($im,$x1,$y2,$x2,$y2,$gray_lite);
        imageline($im,$x2,$y1,$x2,$y2,$gray_dark);
        }

   // set the correct png headers
   header ("Content-type: image/png");
  // spit the image out the other end
  imagepng($im);
?>


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved