Home Backend Development PHP Tutorial PHP中利用GD实现的柱状图

PHP中利用GD实现的柱状图

Jun 23, 2016 pm 01:24 PM

PHP中利用GD实现的柱状图,自己写的一个画柱状图的类,上代码。

  1 <?php  2  Class Chart{  3     private $image; // 定义图像  4     private $title; // 定义标题  5     private $ydata; // 定义Y轴数据  6     private $xdata; // 定义X轴数据  7     private $color; // 定义条形图颜色  8     private $bgcolor; // 定义图片背景颜色  9     private $width; // 定义图片的宽 10     private $height; // 定义图片的长 11      12     /* 13      * 构造函数  14      * String title 图片标题 15      * Array xdata 索引数组,X轴数据 16      * Array ydata 索引数组,数字数组,Y轴数据 17      */ 18     function __construct($title,$xdata,$ydata) {         19         $this->title = $title; 20         $this->xdata = $xdata; 21         $this->ydata = $ydata; 22         $this->color = array('#058DC7', '#50B432', '#ED561B', '#DDDF00', '#24CBE5', '#64E572', '#FF9655', '#FFF263', '#6AF9C4'); 23     } 24      25     /* 26      * 公有方法,设置条形图的颜色  27      * Array color 颜色数组,元素取值为'#058DC7'这种形式 28      */ 29     function setBarColor($color){ 30         $this->color = $color; 31     } 32      33     /* 34      * 公有方法,画条形图  35      */ 36     function mkBarChart(){ 37         $ydataNum = $this->arrayNum($this->ydata); // 取得数据分组的个数 38         $max = $this->arrayMax($this->ydata); // 取得所有呈现数据的最大值 39         $multi = ($max > 100)? $max/100 : 1; // 如果最大数据是大于100的则进行缩小处理,获取 40         $barHeightMulti = 2.2; // 条形高缩放的比例 41         $barWidth = (16 - 2*($ydataNum - 1)) > 10 ? (16 - 2*($ydataNum - 1)) : 10; // 条的宽 42         $barSpace = 16; // 条之间的间距 43         $chartLeft = (1+strlen($max))*12; // 设置图片左边的margin 44          45         $barY = 250; // 初始化条形图的Y的坐标 46         // 设置图片的宽、高 47         $this->width = ($ydataNum*$barWidth + $barSpace)*count($this->xdata) + $chartLeft;  48         $this->height = 300;  49         $this->image = imagecreatetruecolor($this->width ,$this->height); // 准备画布 50         $this->bgcolor = imagecolorallocate($this->image,255,255,255); // 图片的背景颜色 51          52         // 设置条形图的颜色 53         $color = array(); 54         foreach($this->color as $col) { 55             $col = substr($col,1,strlen($col)-1); 56             $red = hexdec(substr($col,0,2)); 57             $green = hexdec(substr($col,2,2)); 58             $blue = hexdec(substr($col,4,2)); 59             $color[] = imagecolorallocate($this->image ,$red, $green, $blue); 60         } 61          62         // 设置线段的颜色、字体的颜色、字体的路径 63         $lineColor = imagecolorallocate($this->image ,0xcc,0xcc,0xcc); 64         $fontColor = imagecolorallocate($this->image, 0x95,0x8f,0x8f); 65         $fontPath = 'font/simsun.ttc'; 66          67         imagefill($this->image,0,0,$this->bgcolor); // 绘画背景 68          69         // 绘画图的分短线与左右边线 70         for($i = 0; $i < 6; $i++ ) { 71             imageline($this->image,$chartLeft-10,$barY-$barHeightMulti*$max/5/$multi*$i,$this->width,$barY-$barHeightMulti*$max/5/$multi*$i,$lineColor); 72             imagestring($this->image,4,5,$barY-$barHeightMulti*$max/5/$multi*$i-8,floor($max/5*$i),$fontColor); 73         }         74         imageline($this->image,$chartLeft-10,30,$chartLeft-10,$barY,$lineColor); 75         imageline($this->image,$this->width-1,30,$this->width-1,$barY,$lineColor); 76          77         // 绘画图的条形 78         foreach($this->ydata as $key => $val) { 79             if($ydataNum == 1) { 80                 // 一个系列数据时 81                 $barX = $chartLeft + 3 + ($barWidth+$barSpace)*$key; 82                 imagefilledrectangle($this->image,$barX,$barY-$barHeightMulti*$val/$multi,$barX+$barWidth,$barY,$color[$key%count($this->color)]); 83             }elseif($ydataNum > 1) { 84                 // 多个系列的数据时 85                 $cbarSpace = $barSpace + $barWidth*($ydataNum-1); 86                 foreach($val as $ckey => $cval) { 87                     $barX = $chartLeft + 3 + $barWidth*$key + $ckey*($cbarSpace+$barWidth); 88                     imagefilledrectangle($this->image,$barX,$barY-$barHeightMulti*$cval/$multi,$barX+$barWidth,$barY,$color[$key%count($this->color)]); 89                 } 90             } 91              92         } 93                  94         // 绘画条形图的x坐标的值 95         foreach($this->xdata as $key => $val) { 96             $barX = $chartLeft + ($ydataNum*$barWidth+$barSpace)*$key + $ydataNum*$barWidth/3; 97             imagettftext($this->image,10,-45,$barX,$barY+15,$fontColor,$fontPath,$this->xdata[$key]); 98         } 99         100         // 绘画标题101         $titleStart = ($this->width - 5.5*strlen($this->title))/2;102         imagettftext($this->image,11,0,$titleStart,20,$fontColor,$fontPath,$this->title);103         104         // 输出图片105         header("Content-Type:image/png");106         imagepng ( $this->image );107     }108     109     /*110      * 私有方法,当数组为二元数组时,统计数组的长度 111      * Array arr 要做统计的数组112      */113     private function arrayNum($arr) {114          $num = 0;115          if(is_array($arr)) {116             $num++;117             for($i = 0; $i < count($arr); $i++){118                 if(is_array($arr[$i])) {119                     $num = count($arr);120                     break;121                 }122             }123          }124          return $num;125     }126     127     /*128      * 私有方法,计算数组的深度 129      * Array arr 数组130      */131     private function arrayDepth($arr) {132          $num = 0;133          if(is_array($arr)) {134             $num++;135             for($i = 0; $i < count($arr); $i++){136                 if(is_array($arr[$i])) {137                     $num += $this->arrayDepth($arr[$i]);138                     break;139                 }140             }141          }142          return $num;143     }144     145     /*146      * 私有方法,找到一组中的最大值 147      * Array arr 数字数组148      */149      private function arrayMax($arr) {150         $depth = $this->arrayDepth($arr);151         $max = 0;152         if($depth == 1) {153             rsort($arr);154             $max = $arr[0];        155         }elseif($depth > 1) {156             foreach($arr as $val) {157                 if(is_array($val)) {158                     if($this->arrayMax($val) > $max) {159                         $max = $this->arrayMax($val);160                     }161                 }else{                    162                     if($val > $max){163                         $max = $val;164                     }165                 }    166             }            167         }168         return $max;169     }170     171     function arrayAver($arr) {172         $aver = array();173         foreach($arr as $val) {174             if(is_array($val)) {175                 $aver = array_merge($aver,$val);176             }else{177                 $aver[] = $val;178             }179         }180         return array_sum($aver)/count($aver);181         182     }183     // 析构函数184     function __destruct(){185         imagedestroy($this->image);186     }187  }188 ?><br /><br />这个类可以实现画一个系列的柱状图和多个系列的柱状图,如下:
Copy after login

一个系列的柱状图
Copy after login

<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />多个系列的柱状图
Copy after login

 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1268
29
C# Tutorial
1243
24
PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP: A Key Language for Web Development PHP: A Key Language for Web Development Apr 13, 2025 am 12:08 AM

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

How does PHP handle file uploads securely? How does PHP handle file uploads securely? Apr 10, 2025 am 09:37 AM

PHP handles file uploads through the $\_FILES variable. The methods to ensure security include: 1. Check upload errors, 2. Verify file type and size, 3. Prevent file overwriting, 4. Move files to a permanent storage location.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

See all articles