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

php生成饼图效果的实现代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-05 09:17:18 浏览: 评论:0 

生成饼图很多代码都可以实现,今天我们介绍的这个实例是基于php gd库的一种生成统计数据的饼图效果,有需要的同学可以参考一下,代码如下:

  1. <?php 
  2. //+------------------------+  
  3. //| pie3dfun.PHP//公用函数 |  
  4. //+------------------------+  
  5. define("ANGLE_STEP", 5); //定义画椭圆弧时的角度步长  
  6. function draw_getdarkcolor($img,$clr//求$clr对应的暗色  
  7. {  
  8. $rgb = imagecolorsforindex($img,$clr);  
  9. return array($rgb["red"]/2,$rgb["green"]/2,$rgb["blue"]/2);  
  10. }  
  11. function draw_getexy($a$b$d//求角度$d对应的椭圆上的点坐标  
  12. {  
  13. $d = deg2rad($d);  
  14. return array(round($a*Cos($d)), round($b*Sin($d)));  
  15. }  
  16. function draw_arc($img,$ox,$oy,$a,$b,$sd,$ed,$clr//椭圆弧函数  
  17. {  
  18. $n = ceil(($ed-$sd)/ANGLE_STEP);  
  19. $d = $sd;  
  20. list($x0,$y0) = draw_getexy($a,$b,$d);  
  21. for($i=0; $i<$n$i++)  
  22. {  
  23. $d = ($d+ANGLE_STEP)>$ed?$ed:($d+ANGLE_STEP);  
  24. list($x$y) = draw_getexy($a$b$d);  
  25. imageline($img$x0+$ox$y0+$oy$x+$ox$y+$oy$clr);  
  26. $x0 = $x;  
  27. $y0 = $y;  
  28. }  
  29. }  
  30. function draw_sector($img$ox$oy$a$b$sd$ed$clr//画扇面  
  31. {  
  32. $n = ceil(($ed-$sd)/ANGLE_STEP);  
  33. $d = $sd;  
  34. list($x0,$y0) = draw_getexy($a$b$d);  
  35. imageline($img$x0+$ox$y0+$oy$ox$oy$clr);  
  36. for($i=0; $i<$n$i++)  
  37. {  
  38. $d = ($d+ANGLE_STEP)>$ed?$ed:($d+ANGLE_STEP);  
  39. list($x$y) = draw_getexy($a$b$d);  
  40. imageline($img$x0+$ox$y0+$oy$x+$ox$y+$oy$clr);  
  41. $x0 = $x;  
  42. $y0 = $y;  
  43. }  
  44. imageline($img$x0+$ox$y0+$oy$ox$oy$clr);  
  45. list($x$y) = draw_getexy($a/2, $b/2, ($d+$sd)/2);  
  46. imagefill($img$x+$ox$y+$oy$clr);  
  47. }  
  48. function draw_sector3d($img$ox$oy$a$b$v$sd$ed$clr//3d扇面  
  49. {  
  50. draw_sector($img$ox$oy$a$b$sd$ed$clr);  
  51. if($sd<180)  
  52. {  
  53. list($R$G$B) = draw_getdarkcolor($img$clr);  
  54. $clr=imagecolorallocate($img$R$G$B);  
  55. if($ed>180) $ed = 180;  
  56. list($sx$sy) = draw_getexy($a,$b,$sd);  
  57. $sx += $ox;  
  58. $sy += $oy;  
  59. list($ex$ey) = draw_getexy($a$b$ed);  
  60. $ex += $ox;  
  61. $ey += $oy;  
  62. imageline($img$sx$sy$sx$sy+$v$clr);  
  63. imageline($img$ex$ey$ex$ey+$v$clr);  
  64. draw_arc($img$ox$oy+$v$a$b$sd$ed$clr);  
  65. list($sx$sy) = draw_getexy($a$b, ($sd+$ed)/2);  
  66. $sy += $oy+$v/2;  
  67. $sx += $ox;  
  68. imagefill($img$sx$sy$clr);  
  69. }  
  70. }  
  71. function draw_getindexcolor($img$clr//RBG转索引色  
  72. {  
  73. $R = ($clr>>16) & 0xff;  
  74. $G = ($clr>>8)& 0xff;  
  75. $B = ($clr) & 0xff;  
  76. return imagecolorallocate($img$R$G$B);  
  77. }  
  78. // 绘图主函数,并输出图片  
  79. // $datLst 为数据数组, $datLst 为标签数组, $datLst 为颜色数组  
  80. // 以上三个数组的维数应该相等  
  81. function draw_img($datLst,$labLst,$clrLst,$a=250,$b=120,$v=20,$font=10)  
  82. {  
  83. $ox = 5+$a;  
  84. $oy = 5+$b;  
  85. $fw = imagefontwidth($font);  
  86. $fh = imagefontheight($font);  
  87. $n = count($datLst);//数据项个数  
  88. $w = 10+$a*2;  
  89. $h = 10+$b*2+$v+($fh+2)*$n;  
  90. $img = imagecreate($w$h);  
  91. //转RGB为索引色  
  92. for($i=0; $i<$n$i++)  
  93. $clrLst[$i] = draw_getindexcolor($img,$clrLst[$i]);  
  94. $clrbk = imagecolorallocate($img, 0xff, 0xff, 0xff);  
  95. $clrt = imagecolorallocate($img, 0x00, 0x00, 0x00);  
  96. //填充背景色  
  97. imagefill($img, 0, 0, $clrbk);  
  98. //求和  
  99. $tot = 0;  
  100. for($i=0; $i<$n$i++)  
  101. $tot += $datLst[$i];  
  102. $sd = 0;  
  103. $ed = 0; 333  
  104. $ly = 10+$b*2+$v;  
  105. for($i=0; $i<$n$i++)  
  106. {  
  107. $sd = $ed;  
  108. $ed += $datLst[$i]/$tot*360;  
  109. //画圆饼  
  110. draw_sector3d($img$ox$oy$a$b$v$sd$ed$clrLst[$i]); //$sd,$ed,$clrLst[$i]);  
  111. //画标签  
  112. imagefilledrectangle($img, 5, $ly, 5+$fw$ly+$fh$clrLst[$i]);  
  113. imagerectangle($img, 5, $ly, 5+$fw$ly+$fh$clrt);  
  114. //imagestring($img, $font, 5+2*$fw, $ly, $labLst[$i].":".$datLst[$i]."(".(round(10000*($datLst[$i]/$tot))/100)."%)", $clrt);  
  115. $str = iconv("GB2312""UTF-8"$labLst[$i]);  
  116. ImageTTFText($img$font, 0, 5+2*$fw$ly+13, $clrt"./simsun.ttf"$str.":".$datLst[$i]."(".(round(10000*($datLst[$i]/$tot))/100)."%)");  
  117. $ly += $fh+2;  
  118. }  
  119. //输出图形  
  120. header("Content-type: image/png");  
  121. //输出生成的图片  
  122. $imgFileName = "../temp/".time().".png";  
  123. imagepng($img,$imgFileName);  
  124. echo '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''  
  125. //开源代码phpfensi.com 
  126. $datLst = array(30, 10, 20, 20, 10, 20, 10, 20); //数据  
  127. $labLst = array("中国科技大学""安徽理工大学""清华大学""北京大学""南京大学""上海大学""河海大学""中山大学"); //标签  
  128. $clrLst = array(0x99ff00, 0xff6666, 0x0099ff, 0xff99ff, 0xffff99, 0x99ffff, 0xff3333, 0x009999);  
  129. //画图  
  130. draw_img($datLst,$labLst,$clrLst);  
  131. ?> 

Tags: php生成饼图 php饼图效果

分享到:

相关文章