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

php动态生成饼图代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 11:09:10 浏览: 评论:0 
  1. */ 
  2. //创建图像 
  3. $image=imagecreatetruecolor(300,300); 
  4. //定义画饼状图所需要的颜色 
  5. $white=imagecolorallocate($image, 0xff, 0xff, 0xff); 
  6. $gray=imagecolorallocate($image, 0xc0, 0xc0, 0xc0); 
  7. $darkgray=imagecolorallocate($image, 0x90, 0x90, 0x90); 
  8. $navy=imagecolorallocate($image, 0x00, 0x00, 0x80); 
  9. $darknavy=imagecolorallocate($image, 0x00, 0x00, 0x50); 
  10. $red=imagecolorallocate($image, 0xff, 0x00, 0x00); 
  11. $darkred=imagecolorallocate($image, 0x90, 0x00, 0x00); 
  12.  
  13. /* 
  14. imagecolorallocate -- 为一幅图像分配颜色   说明   int imagecolorallocate ( resource image, int red, int green, int blue)   imagecolorallocate() 返回一个标识符,代表了由给定的 rgb 成分组成的颜色。image 参数是 imagecreate() 函数的返回值。red,green 和 blue 分别是所需要的颜色的红,绿,蓝成分。这些参数是 0 到 255 的整数或者十六进制的 0x00 到 0xff。imagecolorallocate() 必须被调用以创建每一种用在 image 所代表的图像中的颜色。  
  15. */ 
  16. //画图 
  17. for($i=160;$i > 150; $i--) 
  18.   imagefilledarc($image, 150, $i, 200, 80, 0, 45, $darknavy, img_arc_pie); 
  19.   imagefilledarc($image, 150, $i, 200, 80, 45, 75 , $darkgray, img_arc_pie); 
  20.   imagefilledarc($image, 150, $i, 200, 80, 75, 360 , $darkred, img_arc_pie); 
  21. imagefilledarc($image, 150, 150, 200, 80, 0, 45, $navy, img_arc_pie); 
  22. imagefilledarc($image, 150, 150, 200, 80, 45, 75 , $gray, img_arc_pie); 
  23. imagefilledarc($image, 150, 150, 200, 80, 75, 360 , $red, img_arc_pie); 
  24. header('content-type: image/png'); 
  25. imagepng($image); 
  26. imagedestroy($image); 
  27. /* 
  28. imagefilledarc()函数,可以在画出椭圆弧的同时,使用指定颜色对其进行填充。使用此函数的这种功能,就可以很简单的画出一个用于统计的饼状图。下面演示imagefilledarc()函数的使用方法 
  29. */ 
  30.  
  31. //在图片画线条 
  32.  
  33. //创建真彩色图像 
  34. $img=imagecreatetruecolor(300,300); 
  35. $white=imagecolorallocate($img,255,255,255); 
  36. $red=imagecolorallocate($img,255,0,0); 
  37. $green=imagecolorallocate($img,0,255,0); 
  38. //在图像上画椭圆 
  39. imagefilledellips教程e($img,150,150,250,100,$red); 
  40. imagefilledellipse($img,150,150,100,250,$green); 
  41. //输出图像 
  42. header("content-type: image/png"); 
  43. imagepng($img);//开源代码phpfensi.com 
  44. //销毁图像 
  45. imagedestroy($img); 

Tags: php动态饼图 php生成饼图

分享到:

相关文章