PHP中使用GD库绘制折线图 折线统计图的绘制方法

本文通过代码给大家介绍php中使用GD库绘制折线图,涉及到php中GD库的一些简单使用,本文介绍的非常详细,感兴趣的朋友一起学习吧。

在PHP中,有一些简单的图像函数是可以直接使用的,但大多数要处理的图像,都需要在编译PHP时加上GD库。除了安装GD库之外,在PHP中还可能需要其他的库,这可以根据需要支持哪些图像格式而定。GD库可以在http://www.boutell.com/gd/免费下载,不同的GD版本支持的图像格式不完全一样,最新的GD库版本支持GIF、JPEG、PNG、WBMP、XBM等格式的图像文件,此外还支持一些如FreeType、Type 1等字体库。通过GD库中的函数可以完成各种点、线、几何图形、文本及颜色的操作和处理,也可以创建或读取多种格式的图像文件。

在PHP中,通过GD库处理图像的操作,都是先在内存中处理,操作完成以后再以文件流的方式,输出到浏览器或保存在服务器的磁盘中。创建一个图像应该完成如下所示的4个基本步骤。

(1)创建画布:所有的绘图设计都需要在一个背景图片上完成,而画布实际上就是在内存中开辟的一块临时区域,用于存储图像的信息。以后的图像操作都将基于这个背景画布,该画布的管理就类似于我们在画画时使用的画布。

(2)绘制图像:画布创建完成以后,就可以通过这个画布资源,使用各种画像函数设置图像的颜色、填充画布、画点、线段、各种几何图形,以及向图像中添加文本等。

(3)输出图像:完成整个图像的绘制以后,需要将图像以某种格式保存到服务器指定的文件中,或将图像直接输出到浏览器上显示给用户。但在图像输出之前,一定要使用header()函数发送Content-type通知浏览器,这次发送的是图片不是文本。

(4)释放资源:图像被输出以后,画布中的内容也不再有用。出于节约系统资源的考虑,需要及时清除画布占用的所有内存资源。

php中用GD绘制折线图,代码如下:

  1. Class Chart{
  2. private $image; // 定义图像
  3. private $title; // 定义标题
  4. private $ydata; // 定义Y轴数据
  5. private $xdata; // 定义X轴数据
  6. private $seriesName; // 定义每个系列数据的名称
  7. private $color; // 定义条形图颜色
  8. private $bgcolor; // 定义图片背景颜色
  9. private $width; // 定义图片的宽
  10. private $height; // 定义图片的长
  11. /*
  12. * 构造函数
  13. * String title 图片标题
  14. * Array xdata 索引数组,X轴数据
  15. * Array ydata 索引数组,数字数组,Y轴数据
  16. * Array series_name 索引数组,数据系列名称
  17. */
  18. function __construct($title,$xdata,$ydata,$seriesName) {
  19. $this->title = $title;
  20. $this->xdata = $xdata;
  21. $this->ydata = $ydata;
  22. $this->seriesName = $seriesName;
  23. $this->color = array('#DC', '#B', '#EDB', '#DDDF', '#CBE', '#E', '#FF', '#FFF', '#AFC');
  24. }
  25. /*
  26. * 公有方法,设置条形图的颜色
  27. * Array color 颜色数组,元素取值为'#DC'这种形式
  28. */
  29. function setBarColor($color){
  30. $this->color = $color;
  31. }
  32. /*
  33. * 绘制折线图
  34. */
  35. public function paintLineChart() {
  36. $ydataNum = $this->arrayNum($this->ydata); // 取得数据分组的个数
  37. $max = $this->arrayMax($this->ydata); // 取得所有呈现数据的最大值
  38. $max = ($max > )? $max : ;
  39. $multi = $max/; // 如果最大数据是大于的则进行缩小处理
  40. $barHeightMulti = .; // 条形高缩放的比例
  41. $lineWidth = ;
  42. $chartLeft = (+strlen($max))*; // 设置图片左边的margin
  43. $lineY = ; // 初始化条形图的Y的坐标
  44. // 设置图片的宽、高
  45. //$this->width = $lineWidth*count($this->xdata) + $chartLeft - $lineWidth/.;
  46. $margin = ; // 小矩形描述右边margin
  47. $recWidth = ; // 小矩形的宽
  48. $recHeight = ; // 小矩形的高
  49. $space = ; // 小矩形与条形图的间距
  50. $tmpWidth = ;
  51. // 设置图片的宽、高
  52. $lineChartWidth = $lineWidth*count($this->xdata) + $chartLeft - $lineWidth/. ;
  53. // 两个系列数据以上的加上小矩形的宽
  54. if($ydataNum > ) {
  55. $tmpWidth = $this->arrayLengthMax($this->seriesName)**/ + $space + $recWidth + + $margin;
  56. }
  57. $this->width = $lineChartWidth + $tmpWidth;
  58. $this->height = ;
  59. $this->image = imagecreatetruecolor($this->width ,$this->height); // 准备画布
  60. $this->bgcolor = imagecolorallocate($this->image,,,); // 图片的背景颜色
  61. // 设置条形图的颜色
  62. $color = array();
  63. foreach($this->color as $col) {
  64. $col = substr($col,,strlen($col)-);
  65. $red = hexdec(substr($col,,));
  66. $green = hexdec(substr($col,,));
  67. $blue = hexdec(substr($col,,));
  68. $color[] = imagecolorallocate($this->image ,$red, $green, $blue);
  69. }
  70. // 设置线段的颜色、字体的颜色、字体的路径
  71. $lineColor = imagecolorallocate($this->image ,xcc,xcc,xcc);
  72. $fontColor = imagecolorallocate($this->image, x,xf,xf);
  73. $fontPath = 'font/simsun.ttc';
  74. imagefill($this->image,,,$this->bgcolor); // 绘画背景
  75. // 绘画图的分短线与左右边线
  76. for($i = ; $i < ; $i++ ) {
  77. imageline($this->image,$chartLeft-,$lineY-$barHeightMulti*$max//$multi*$i,$lineChartWidth,$lineY-$barHeightMulti*$max//$multi*$i,$lineColor);
  78. imagestring($this->image,,,$lineY-$barHeightMulti*$max//$multi*$i-,floor($max/*$i),$fontColor);
  79. }
  80. imageline($this->image,$chartLeft-,,$chartLeft-,$lineY,$lineColor);
  81. imageline($this->image,$lineChartWidth-,,$lineChartWidth-,$lineY,$lineColor);
  82. $style = array($lineColor,$lineColor,$lineColor,$lineColor,$lineColor,$this->bgcolor,$this->bgcolor,$this->bgcolor,$this->bgcolor,$this->bgcolor);
  83. imagesetstyle($this->image,$style);
  84. // 绘制折线图的分隔线(虚线)
  85. foreach($this->xdata as $key => $val) {
  86. $lineX = $chartLeft + + $lineWidth*$key;
  87. imageline($this->image,$lineX,,$lineX,$lineY,IMG_COLOR_STYLED);
  88. }
  89. // 绘画图的折线
  90. foreach($this->ydata as $key => $val) {
  91. if($ydataNum == ) {
  92. // 一个系列数据时
  93. if($key == count($this->ydata) - ) break;
  94. $lineX = $chartLeft + + $lineWidth*$key;
  95. $lineY = $lineY-$barHeightMulti*($this->ydata[$key+])/$multi;
  96. // 画折线
  97. if($key == count($this->ydata) - ) {
  98. imagefilledellipse($this->image,$lineX+$lineWidth,$lineY,,,$color[]);
  99. }
  100. imageline($this->image,$lineX,$lineY-$barHeightMulti*$val/$multi,$lineX+$lineWidth,$lineY,$color[]);
  101. imagefilledellipse($this->image,$lineX,$lineY-$barHeightMulti*$val/$multi,,,$color[]);
  102. }elseif($ydataNum > ) {
  103. // 多个系列的数据时
  104. foreach($val as $ckey => $cval) {
  105. if($ckey == count($val) - ) break;
  106. $lineX = $chartLeft + + $lineWidth*$ckey;
  107. $lineY = $lineY-$barHeightMulti*($val[$ckey+])/$multi;
  108. // 画折线
  109. if($ckey == count($val) - ) {
  110. imagefilledellipse($this->image,$lineX+$lineWidth,$lineY,,,$color[$key%count($this->color)]);
  111. }
  112. imageline($this->image,$lineX,$lineY-$barHeightMulti*$cval/$multi,$lineX+$lineWidth,$lineY,$color[$key%count($this->color)]);
  113. imagefilledellipse($this->image,$lineX,$lineY-$barHeightMulti*$cval/$multi,,,$color[$key%count($this->color)]);
  114. }
  115. }
  116. }
  117. // 绘画条形图的x坐标的值
  118. foreach($this->xdata as $key => $val) {
  119. $lineX = $chartLeft + $lineWidth*$key + $lineWidth/ - ;
  120. imagettftext($this->image,,-,$lineX,$lineY+,$fontColor,$fontPath,$this->xdata[$key]);
  121. }
  122. // 两个系列数据以上时绘制小矩形及之后文字说明
  123. if($ydataNum > ) {
  124. $x = $lineChartWidth + $space;
  125. $y = ;
  126. foreach($this->seriesName as $key => $val) {
  127. imagefilledrectangle($this->image,$x,$y,$x+$recWidth,$y+$recHeight,$color[$key%count($this->color)]);
  128. imagettftext($this->image,,,$x+$recWidth+,$y+$recHeight-,$fontColor,$fontPath,$this->seriesName[$key]);
  129. $y += $recHeight + ;
  130. }
  131. }
  132. // 绘画标题
  133. $titleStart = ($this->width - .*strlen($this->title))/;
  134. imagettftext($this->image,,,$titleStart,,$fontColor,$fontPath,$this->title);
  135. // 输出图片
  136. header("Content-Type:image/png");
  137. imagepng ( $this->image );
  138. }
  139. /*
  140. * 私有方法,当数组为二元数组时,统计数组的长度
  141. * Array arr 要做统计的数组
  142. */
  143. private function arrayNum($arr) {
  144. $num = ;
  145. if(is_array($arr)) {
  146. $num++;
  147. for($i = ; $i < count($arr); $i++){
  148. if(is_array($arr[$i])) {
  149. $num = count($arr);
  150. break;
  151. }
  152. }
  153. }
  154. return $num;
  155. }
  156. /*
  157. * 私有方法,计算数组的深度
  158. * Array arr 数组
  159. */
  160. private function arrayDepth($arr) {
  161. $num = ;
  162. if(is_array($arr)) {
  163. $num++;
  164. for($i = ; $i < count($arr); $i++){
  165. if(is_array($arr[$i])) {
  166. $num += $this->arrayDepth($arr[$i]);
  167. break;
  168. }
  169. }
  170. }
  171. return $num;
  172. }
  173. /*
  174. * 私有方法,找到一组中的最大值
  175. * Array arr 数字数组
  176. */
  177. private function arrayMax($arr) {
  178. $depth = $this->arrayDepth($arr);
  179. $max = ;
  180. if($depth == ) {
  181. rsort($arr);
  182. $max = $arr[];
  183. }elseif($depth > ) {
  184. foreach($arr as $val) {
  185. if(is_array($val)) {
  186. if($this->arrayMax($val) > $max) {
  187. $max = $this->arrayMax($val);
  188. }
  189. }else{
  190. if($val > $max){
  191. $max = $val;
  192. }
  193. }
  194. }
  195. }
  196. return $max;
  197. }
  198. /*
  199. * 私有方法,求数组的平均值
  200. * Array arr 数字数组
  201. */
  202. function arrayAver($arr) {
  203. $aver = array();
  204. foreach($arr as $val) {
  205. if(is_array($val)) {
  206. $aver = array_merge($aver,$val);
  207. }else{
  208. $aver[] = $val;
  209. }
  210. }
  211. return array_sum($aver)/count($aver);
  212. }
  213. /*
  214. * 私有方法,求数组中元素长度最大的值
  215. * Array arr 字符串数组,必须是汉字
  216. */
  217. private function arrayLengthMax($arr) {
  218. $length = ;
  219. foreach($arr as $val) {
  220. $length = strlen($val) > $length ? strlen($val) : $length;
  221. }
  222. return $length/;
  223. }
  224. // 析构函数
  225. function __destruct(){
  226. imagedestroy($this->image);
  227. }
  228. }

测试代码如下:

  1. $xdata = array('测试一','测试二','测试三','测试四','测试五','测试六','测试七','测试八','测试九');
  2. $ydata = array(array(,,,,,,,,),array(,,,,,,,,));
  3. $color = array();
  4. $seriesName = array("七月","八月");
  5. $title = "测试数据";
  6. $Img = new Chart($title,$xdata,$ydata,$seriesName);
  7. $Img->paintLineChart();

到此代码结束。

下面给大家介绍php中GD库的一些简单使用

今天了解了一些GD库的简单使用,现在稍微做一下总结!

GD库是什么?,graphic device,图像工具库,gd库是php处理图形的扩展库,gd库提供了一系列用来处理图片的API,使用GD库可以处理图片,或者生成图片。 在网站上 GD库通常用来生成缩略图或者用来对图片加水印或者对网站数据生成报表。

php并不局限于输出HTML文本。php通过使用GD扩展库还能用来动态输出图像,例如文字按钮、验证码、数据统计图等。哈可以轻松地编辑图像,力图处理缩略图和为图片添加水印等,具有强大的图像处理能力。

首先我们来说下GD库,绘制个简单图形的一些步骤:

1、首先是创建画布,此处我们利用imagecreatetruecolor函数,也可以利用imagecreate,区别在于前者创建了一个真彩图像,后者创建了一个基于调色板的图像

$img=imagecreatetruecolor(100,100),其中有两个参数分别对应,我们创建的图像的宽和高

2、设置一些必要的"染料盒"

其实就是定义一些之后会用到的填充颜色,此处我们统一定义在这个位置,此处我们利用imagecolorallocate函数

  1. $white=imagecolorallocate($img,0xFF,0xFF,0xFF)或者可以使用RGB的颜色命名方式 如$white=imagecolorallocate($img,255,255,255);
  2. $gray = imagecolorallocate($img, 0xC0, 0xC0, 0xC0);
  3. $darkgray = imagecolorallocate($img, 0x90, 0x90, 0x90);
  4. $navy = imagecolorallocate($img, 0x00, 0x00, 0x80);
  5. $darknavy = imagecolorallocate($img, 0x00, 0x00, 0x50);
  6. $red = imagecolorallocate($img, 0xFF, 0x00, 0x00);
  7. $darkred = imagecolorallocate($img, 0x90, 0x00, 0x00);
  8. $black=imagecolorallocate($img,0x00,0x00,0x00);

此处我们定义多一些所需要的颜色

3、填充区域颜色,可以简单的理解为填充图片的背景颜色,利用imagefill函数

imagefill($img,0,0,$white),此处的0 0表示从坐标x y处开始填充背景色

4、绘制图形,例如绘制饼状图,所需要的是imagefilledarc函数

imagefilledarc()的参数相对来说较多,形如imagefilledarc($img,50,$i,100,50,0,45,$red,IMG_ARC_PIE);

其中分别表示以red颜色字img图像上绘制一个以50,$i为起点,以0 45角度这个范围内绘制弧线

5、期间我们还可以添加一些说明问题,比如水平的添加一个字符串,利用 imagestring($img,1,20,40,"hello,world!",$red),表示在img图片中以20 40为坐标,写上一个红色的hello,world!字样

6、就是讲图像输出

首先要告之浏览器要以何种图片格式输出,例如以png输出,则使用header("Content-type:image/png");

其次 将图片输出到浏览器中,imagepng($img);

最后,销毁图片,即释放该图片存储所占用的内存 imagedestroy(img);,