首页 > 开发 > PHP > 正文

php打造智能化的柱状图程序,用于报表等

2024-05-04 23:36:32
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php打造智能化的柱状图程序,用于报表等的相关资料,需要的朋友可以参考下

php打造智能化的柱状图程序,用于报表等

 

 
  1. <?php  
  2. /***  
  3. * @project Bar Graph Program  
  4. * @license GPL  
  5. * @package  
  6. * @file GrapBar.php  
  7. * @date 2007-4-3  
  8. * @version 1.0  
  9. * @last modified  
  10.  
  11. * 定义 柱状图(柱形图) 类  
  12.  
  13. * 注意,使用前请确保字体路径存在并允许访问,如果出错,还要检查在php.ini配置中的open_basedir项,如果没此路径请添加,或在程序中设置包含  
  14.  
  15. * 智能化的柱状图程序,用于报表等  
  16.  
  17. ***/ 
  18.  
  19. define("DEFAULT_FONT_PATH""c:/windows/fonts/simhei.ttf");  
  20. class SingleBar  
  21. {  
  22. private $_x;  
  23. private $_y;  
  24. private $_h;  
  25. public $_l = 50;  
  26. private $_w = null;  
  27. private $_srcPoints = array();  
  28. private $_points = array();  
  29.  
  30. public function __construct($x$y$h$l = 50, $w = null)  
  31. {  
  32. $this->_x = $x;  
  33. $this->_y = $y;  
  34. $this->_h = $h;  
  35. $this->_l = $l;  
  36. $this->_w = $w;  
  37. $this->_srcPoints = $this->getSrcPoints();  
  38. $this->_points = $this->getPoints();  
  39. }  
  40.  
  41. public function getSrcPoints()  
  42. {  
  43. return array(  
  44. array($this->_x , $this->_y),  
  45. array($this->_x+$this->_l , $this->_y),  
  46. array($this->_x+(1.35*$this->_l), $this->_y-(0.35*$this->_l)),  
  47. array($this->_x+(0.35*$this->_l), $this->_y-(0.35*$this->_l)),  
  48. array($this->_x , $this->_y+$this->_h),  
  49. array($this->_x+$this->_l , $this->_y+$this->_h),  
  50. array($this->_x+(1.35*$this->_l), $this->_y+$this->_h-(0.35*$this->_l))  
  51. );  
  52. }  
  53.  
  54. public function getPoints()  
  55. {  
  56. $points = array();  
  57. foreach($this->_srcPoints as $key => $val)  
  58. {  
  59. $points[] = $val[0];  
  60. $points[] = $val[1];  
  61. }  
  62. return $points;  
  63. }  
  64.  
  65. public function getTopPoints()  
  66. {  
  67. return array_slice($this->_points, 0, 8); //顶坐标  
  68. }  
  69.  
  70. public function getBelowPoints()  
  71. {  
  72. return array_merge(array_slice($this->_points, 0, 2), array_slice($this->_points, 8, 4), array_slice($this->_points, 2, 2)); //下坐标  
  73. }  
  74.  
  75. public function getRightSidePoints()  
  76. {  
  77. return array_merge(array_slice($this->_points, 2, 2), array_slice($this->_points, 10, 4), array_slice($this->_points, 4, 2)); //右侧坐标  
  78. }  
  79.  
  80. public function draw($image$topColor$belowColor$sideColor$borderColor = null, $type = 'LEFT')  
  81. {  
  82. if (is_null($borderColor))  
  83. {  
  84. $borderColor = 0xcccccc;  
  85. }  
  86.  
  87. $top_rgb = $this->getRGB($topColor);  
  88. $below_rgb = $this->getRGB($belowColor);  
  89. $side_rgb = $this->getRGB($sideColor);  
  90. $top_color = imagecolorallocate($image$top_rgb['R'], $top_rgb['G'], $top_rgb['B']);  
  91. $below_color = imagecolorallocate($image$below_rgb['R'], $below_rgb['G'], $below_rgb['B']);  
  92. $side_color = imagecolorallocate($image$side_rgb['R'], $side_rgb['G'], $side_rgb['B']);  
  93.  
  94. imagefilledpolygon($image$this->getTopPoints(), 4, $top_color); //画顶面  
  95. imagepolygon($image$this->getTopPoints(), 4, $borderColor); //画顶面边线  
  96.  
  97. imagefilledpolygon($image$this->getBelowPoints(), 4, $below_color); //画下面  
  98. imagepolygon($image$this->getBelowPoints(), 4, $borderColor); //画下面边线  
  99.  
  100. if ($type == 'LEFT')  
  101. {  
  102. imagefilledpolygon($image$this->getRightSidePoints(), 4, $side_color); //画右侧面  
  103. imagepolygon($image$this->getRightSidePoints(), 4, $borderColor); //画侧面边线  
  104. }  
  105. }  
  106.  
  107. public function getRGB($color)  
  108. {  
  109. $ar = array();  
  110. $color = hexdec($color);  
  111. $ar['R'] = ($color>>16) & 0xff;  
  112. $ar['G'] = ($color>>8) & 0xff;  
  113. $ar['B'] = ($color) & 0xff;  
  114. return $ar;  
  115. }  
  116. }  
  117.  
  118. class Bar  
  119. {  
  120. private $_W;  
  121. private $_H;  
  122. private $_bgColor = "ffffff";  
  123. private $_barHeights = array();  
  124. private $_barTexts = array();  
  125. private $_barColors = array();  
  126. public $_title;  
  127. public $_paddingTop = 30;  
  128. public $_paddingBottom = 100;  
  129. public $_paddingLeft = 45;  
  130. public $_paddingRight = 2;  
  131. public $_barL = 50;  
  132. public $image;  
  133.  
  134. public function __construct($imgW$imgH$barHeights$barTexts = null, $barColors = null)  
  135. {  
  136. $this->_W = $imgW;  
  137. $this->_H = $imgH;  
  138. $this->_barHeights = $barHeights;  
  139. $this->_barTexts = $barTexts;  
  140. $this->_barColors = $barColors;  
  141. $this->_paddingBottom = $this->resetPaddingBottom();  
  142. $this->_H = $this->resetHeight();  
  143. $this->image = imagecreatetruecolor($this->_W, $this->_H);  
  144. }  
  145.  
  146. public function stroke()  
  147. {  
  148. $this->drawBg();  
  149. $this->drawBars();  
  150. $this->drawTitle();  
  151. $this->drawLables();  
  152. ob_start();  
  153. //header("Content-type: image/png");  
  154. //imagepng($this->image);  
  155. header("Content-type: " . image_type_to_mime_type(IMAGETYPE_JPEG));  
  156. imagejpeg($this->image);  
  157. imagedestroy($this->image);  
  158. }  
  159.  
  160. public function drawBg()  
  161. {  
  162. $img_w = $this->_W;  
  163. $img_h = $this->_H;  
  164. $paddingTop = $this->_paddingTop;  
  165. $paddingBottom = $this->_paddingBottom;  
  166. $paddingLeft = $this->_paddingLeft;  
  167. $paddingRight = $this->_paddingRight;  
  168. $rgb = $this->getRGB($this->_bgColor);  
  169. $bg = imagecolorallocate($this->image,$rgb['R'], $rgb['G'], $rgb['B']);  
  170. imagefilledrectangle($this->image, 0, 0, $img_w$img_h$bg);  
  171. $side_bg = imagecolorallocatealpha($this->image, 220, 220, 220, 75);  
  172. $side_bg2 = imagecolorallocate($this->image, 220, 220, 220);  
  173. $border_color = imagecolorallocate($this->image, 190, 190, 190);  
  174. $line_color = imagecolorallocate($this->image, 236, 236, 236);  
  175. $dial_color = imagecolorallocate($this->image, 131, 131, 131);  
  176.  
  177. $x1 = $paddingLeft;  
  178. $y1 = $paddingTop;  
  179. $x2 = $img_w - $paddingRight;  
  180. $y2 = $img_h - $paddingBottom;  
  181. imagerectangle($this->image, $x1$y1$x2$y2$border_color);  
  182. imagefilledpolygon($this->image, array($x1-5,$y1+10, $x1-5,$y2+10, $x1,$y2$x1,$y1), 4, $side_bg);  
  183. imagepolygon($this->image, array($x1-5,$y1+10, $x1-5,$y2+10, $x1,$y2$x1,$y1), 4, $border_color);  
  184. imagefilledpolygon($this->image, array($x1-5,$y2+10, $x2-5,$y2+10, $x2,$y2$x1,$y2), 4, $side_bg);  
  185. imagepolygon($this->image, array($x1-5,$y2+10, $x2-5,$y2+10, $x2,$y2$x1,$y2), 4, $border_color);  
  186. imageline($this->image, $x1$y2$x2$y2$side_bg2);  
  187.  
  188. $total_h = $img_h - $paddingTop - $paddingBottom;  
  189. $every_h = $total_h/11;  
  190. for($i=1; $i<=10; $i++)  
  191. {  
  192. imageline($this->image, $x1$y1+($every_h*$i), $x2$y1+($every_h*$i), $line_color); //画网线  
  193. }  
  194.  
  195. $max_h = max($this->_barHeights);  
  196. for($i=1; $i<=10; $i++)  
  197. {  
  198. $value = $max_h - (($max_h/10)*($i-1));  
  199. $value = strval($value);  
  200. $str_w = strlen($value)*5;  
  201. imageline($this->image, $x1-5-3, $y1+10+($every_h*$i), $x1-3+1, $y1+10+($every_h*$i), $dial_color); //画刻度线  
  202. imagestring($this->image, 3, $x1-5-3-$str_w-1, $y1+10+($every_h*$i)-5, $value, 0x000000);  
  203. }  
  204. }  
  205.  
  206.  
  207. public function drawBars()  
  208. {  
  209. $counts = count($this->_barHeights);  
  210. if (emptyempty($this->_barColors))  
  211. {  
  212. $color = $this->setColor();  
  213. $this->_barColors = array_slice($color, 0, $counts);  
  214. //shuffle($this->_barColors);  
  215. }  
  216. $every_w = ($this->_W - $this->_paddingLeft - $this->_paddingRight)/$counts//每一段宽  
  217. $barL = $every_w;  
  218. $barL = ($barL > $this->_barL*1.35+6) ? $this->_barL : $barL/1.35 - 6;  
  219. $max_h = max($this->_barHeights);  
  220. $ruler_h = $this->_H - $this->_paddingTop - $this->_paddingBottom; //标尺总高度  
  221. $stander_h = $ruler_h - ($ruler_h/11); //标尺10等分的高度  
  222. $i = 0;  
  223. foreach ($this->_barHeights as $val)  
  224. {  
  225. $h = ($stander_h/$max_h)*$val;  
  226. $x = $this->_paddingLeft + ($every_w*$i) + (($every_w - ($barL*1.35))/2);;  
  227. $y = $this->_H - $this->_paddingBottom + 10 - $h;  
  228. //$t_color = $this->_barColors[$i];  
  229. $b_color = $this->_barColors[$i];  
  230. //$s_color = $this->_barColors[$i];  
  231.  
  232.  
  233. $rgb = $this->getRGB($this->_barColors[$i]);  
  234. $R = $rgb['R'] * 0.7;  
  235. $G = $rgb['G'] * 0.7;  
  236. $B = $rgb['B'] * 0.7;  
  237.  
  238. $c1 = $R > 0 ? dechex($R) : '00';  
  239. $c2 = $G > 0 ? dechex($G) : '00';  
  240. $c3 = $B > 0 ? dechex($B) : '00';  
  241.  
  242. $t_color = $b_color;  
  243. $s_color = $c1$c2 . $c3;  
  244.  
  245. $SingleBar = new SingleBar($x$y$h$barL);  
  246. $SingleBar->draw($this->image, $t_color$b_color$s_color);  
  247. $i++;  
  248. }  
  249. }  
  250.  
  251. public function drawTitle()  
  252. {  
  253. if (emptyempty($this->_title))  
  254. {  
  255. return;  
  256. }  
  257. $font = 5;  
  258. $font_w = imagefontwidth($font);  
  259. $len = strlen($this->_title);  
  260. $x = ($this->_W + $this->_paddingLeft - $this->_paddingRight)/2;  
  261. $x -= ($len*$font_w)/2;  
  262. $y = ($this->_paddingTop - $font_w)/2 + 12;  
  263. //imagestring($this->image, $font, $x, $y, $title, 0x000000);  
  264. imagettftext($this->image, 12, 0, $x$y, 0x000000, DEFAULT_FONT_PATH, $this->_title);  
  265. }  
  266.  
  267. public function drawLables()  
  268. {  
  269. $x1 = $this->_paddingLeft - 5;  
  270. $y1 = $this->_H - $this->_paddingBottom + 20;  
  271. $x2 = $this->_W - $this->_paddingRight;  
  272. $y2 = $this->_H - 10;  
  273. //imagefilledrectangle($this->image, $x1, $y1, $x2, $y2, 0xffffff);  
  274. imagerectangle($this->image, $x1$y1$x2$y2, 0x000000);  
  275. $space = 5;  
  276. $x = $x1 + 3;  
  277. $y = $y1 + 3;  
  278. foreach ($this->_barTexts as $key => $val)  
  279. {  
  280. $color = $this->_barColors[$key];  
  281. $rgb = $this->getRGB($color);  
  282. $bg = imagecolorallocate($this->image,$rgb['R'], $rgb['G'], $rgb['B']);  
  283. imagefilledrectangle($this->image, $x$y$x+12, $y+12, $bg); //绘12*12的矩形  
  284. imagerectangle($this->image, $x$y$x+12, $y+12, 0x000000); //绘12*12的矩形框  
  285. imagettftext($this->image, 12, 0, $x+12+3, $y+12, 0x000000, DEFAULT_FONT_PATH, $val);  
  286. $x += 12 + $space + (strlen($val)*8) + $space;  
  287. if ($x + (strlen($val)*8) >= $this->_W - $this->_paddingLeft - $this->_paddingRight)  
  288. {  
  289. $x = $x1 + 3;  
  290. $y = $y + 12 + 3;  
  291. }  
  292. }  
  293. }  
  294.  
  295. public function resetPaddingBottom()  
  296. {  
  297. $ruler_w = $this->_W - $this->_paddingLeft - $this->_paddingRight;  
  298. $label_w = $this->getLableTotalWidth();  
  299. $lines = ceil($label_w / $ruler_w);  
  300. $h = 12 * $lines + (3 * ($lines + 1)) + 30;  
  301. return $h;  
  302. }  
  303.  
  304. public function resetHeight()  
  305. {  
  306. $padding_bottom = $this->resetPaddingBottom();  
  307. if ($this->_H - $padding_bottom < 222)  
  308. {  
  309. return 222 + $padding_bottom;  
  310. }  
  311. return $this->_H;  
  312. }  
  313.  
  314.  
  315. public function getLableTotalWidth()  
  316. {  
  317. $counts = count($this->_barTexts);  
  318. $space = 5;  
  319. $total_len = 0;  
  320. foreach ($this->_barTexts as $val)  
  321. {  
  322. $total_len += strlen($val);  
  323. }  
  324.  
  325. $tx_w = ($total_len * 9) + ((12 + 3 + $space) * $counts);  
  326. return $tx_w;  
  327. }  
  328.  
  329. public function setBg($color)  
  330. {  
  331. $this->_bgColor = $color;  
  332. }  
  333.  
  334. public function setTitle($title)  
  335. {  
  336. $this->_title = $title;  
  337. }  
  338.  
  339. public function setColor()  
  340. {  
  341. $ar = array('ff''00''33''66''99''cc');  
  342. $color = array();  
  343. for ($i=0; $i<6; $i++)  
  344. {  
  345. for ($j=0; $j<6; $j++)  
  346. {  
  347. for($k=0; $k<6; $k++)  
  348. {  
  349. $color[] = $ar[$i] . $ar[$j] . $ar[$k];  
  350. }  
  351. }  
  352. }  
  353.  
  354. $color2 = array();  
  355. for ($i=1; $i<216; $i += 4)  
  356. {  
  357. $color2[] = $color[$i];  
  358. }  
  359.  
  360. return $color2;  
  361. }  
  362.  
  363. public function getRGB($color)  
  364. {  
  365. $ar = array();  
  366. $color = hexdec($color);  
  367. $ar['R'] = ($color>>16) & 0xff;  
  368. $ar['G'] = ($color>>8) & 0xff;  
  369. $ar['B'] = ($color) & 0xff;  
  370. return $ar;  
  371. }  
  372. }  
  373.  
  374. /***/ 
  375. $bar = new Bar(500, 300, array(600, 300, 30, 500, 400, 250, 350, 360), array('AAAAA''BBBBB''CCCCC''DDDDD''EEEEEE''FFFFFF''GGGGGGG''HHHHHHHHH'));  
  376. $bar->setTitle('打造完美柱状图!');  
  377. $bar->stroke();  
  378. /***/ 
  379. ?> 

以上所述就是本文的全部内容了,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表