当前位置:Gxlcms > PHP教程 > php饼图统计代码用法

php饼图统计代码用法

时间:2021-07-01 10:21:17 帮助过:18人阅读

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

2、调用方法:

  1. require_once ("piefunction.php");
  2. $datLst = array(10,110,300); //数据
  3. $labLst = array("好评","中评","差评"); //标签
  4. $clrLst = array(0x99ff00, 0xff6666, 0x0099ff);
  5. draw_img($datLst,$labLst,$clrLst);
  6. ?>

说明: 只要数据的个数与后面的标签,颜色个数一致就可以输出正确的饼状图效果了。

人气教程排行