Home Backend Development PHP Tutorial 利用php绘制饼状图的实现代码_php技巧

利用php绘制饼状图的实现代码_php技巧

May 17, 2016 am 09:02 AM
php

drawPieImg()函数包含8个参数,$title为饼状图的标题;$dataArr为需要显示的数据数组;$labelArr为对应数据的标签分类数组;$colorArr为对应数据的绘图颜色数组,这4个参数是必须的,对于不同的系统应用传递相应的参数即可。接下来的4个参数,负责设置要生成的饼状图的大小,如果不设置则使用系统默认值。程序按照床底数组数据的大小,从0度开始绘制,方向按照顺时针方向依次绘制对应数据占据的扇面大小。

复制代码 代码如下:

 //变量定义,画椭圆弧时的角度大小
 define("ANGLELENGTH",3);
 /**
  * 绘制图片
  * @param $title 3D图的标题
  * @param $dataArr 显示的数据数组
  * @param $labelArr 对应数据的标签分类数组
  * @param $colorArr 对应绘图颜色的数组
  * @param $a  画布的基准宽度
  * @param $b  画布的基准高度
  * @param $v  3D柱的高度
  * @param $font 字体大小
  * @return   绘制成功的图片访问路径
  */
 function drawPieImg($title, $dataArr, $labelArr, $colorArr, $a=250, $b=120, $v=20, $font=10){
  $ox = 5+$a;
  $oy = 5+$b;
  $fw = imagefontwidth($font);
  $fh = imagefontheight($font);
  $n = count($dataArr);//计算数组长度
  $w = 10+$a*2;
  $h = 10+$b*2+$v+($fh+2)*$n;
  //创建画板
  $img = imagecreate($w, $h);
  //转RGB为索引色
  for($i=0; $i   $colorArr[$i] = drawIndexColor($img,$colorArr[$i]);//为图像$img分配颜色
  $clrbk = imagecolorallocate($img, 0xff, 0xff, 0xff);
  $clrt = imagecolorallocate($img, 0x00, 0x00, 0x00);
  //填充背景色
  imagefill($img, 0, 0, $clrbk);
  //求和
  $tot = 0;
  for($i=0; $i   $tot += $dataArr[$i];
  //每个分类的起始角度大小
  $sd = 0;
  //每个分类所占据的角度大小
  $ed = 0;
  $ly = 10+$b*2+$v;
  for($i=0; $i   $sd = $ed;
   $ed += $dataArr[$i]/$tot*360;
   //画3d扇面
   draw3DSector($img, $ox, $oy+20, $a, $b, $v, $sd, $ed, $colorArr[$i]);
   //画标签
   imagefilledrectangle($img, 5, $ly, 5+$fw, $ly+$fh, $colorArr[$i]);
   imagerectangle($img, 5, $ly, 5+$fw, $ly+$fh, $clrt);
   //中文转码
   $str = iconv("GB2312", "UTF-8", $labelArr[$i]);
   imagettftext($img, $font, 0, 5+2*$fw, $ly+13, $clrt, "D:/wamp/www/source/font/simhei.ttf", $str.":".$dataArr[$i]."(".(round(10000*($dataArr[$i]/$tot))/100)."%)");
   $ly += $fh+2;
  }
  //绘制图片标题
  imagettftext($img, 15, 0, 5, 15, $clrt, "D:/wamp/www/source/font/simhei.ttf", iconv("GB2312", "UTF-8",$title));
  //输出图形
  header("Content-type: image/png");
  //输出生成的图片
  $imgFileName = "./".time().".png";
  imagepng($img,$imgFileName);
  return $imgFileName;
 }
 /**
  * 绘制3d扇面
  */
 function draw3DSector($img, $ox, $oy, $a, $b, $v, $sd, $ed, $clr) {
  drawSector($img, $ox, $oy, $a, $b, $sd, $ed, $clr);
  if($sd   list($red, $green, $blue) = drawDarkColor($img, $clr);
   //为图像分配颜色
   $clr=imagecolorallocate($img, $red, $green, $blue);
   if($ed>180)
    $ed = 180;
   list($sx, $sy) = getExy($a,$b,$sd);
   $sx += $ox;
   $sy += $oy;
   list($ex, $ey) = getExy($a, $b, $ed);
   $ex += $ox;
   $ey += $oy;
   imageline($img, $sx, $sy, $sx, $sy+$v, $clr);
   imageline($img, $ex, $ey, $ex, $ey+$v, $clr);
   drawArc($img, $ox, $oy+$v, $a, $b, $sd, $ed, $clr);
   list($sx, $sy) = getExy($a, $b, ($sd+$ed)/2);
   $sy += $oy+$v/2;
   $sx += $ox;
   imagefill($img, $sx, $sy, $clr);
  }
 }
 /**
  * 绘制椭圆弧
  */
 function drawArc($img,$ox,$oy,$a,$b,$sd,$ed,$clr){
  $n = ANGLELENGTH >0 ? ceil(($ed-$sd)/ANGLELENGTH) : -1;
  $d = $sd;
  list($x0,$y0) = getExy($a,$b,$d);
  for($i=0; $i   $d = ($d+ANGLELENGTH)>$ed?$ed:($d+ANGLELENGTH);
   list($x, $y) = getExy($a, $b, $d);
   imageline($img, $x0+$ox, $y0+$oy, $x+$ox, $y+$oy, $clr);
   $x0 = $x;
   $y0 = $y;
  }
 }
 /**
  * 绘制扇面
  */
 function drawSector($img, $ox, $oy, $a, $b, $sd, $ed, $clr) {
  $n = ANGLELENGTH > 0 ? ceil(($ed-$sd)/ANGLELENGTH) : -1;
  $d = $sd;
  list($x0,$y0) = getExy($a, $b, $d);
  imageline($img, $x0+$ox, $y0+$oy, $ox, $oy, $clr);
  for($i=0; $i   $d = ($d+ANGLELENGTH)>$ed?$ed:($d+ANGLELENGTH);
   list($x, $y) = getExy($a, $b, $d);
   imageline($img, $x0+$ox, $y0+$oy, $x+$ox, $y+$oy, $clr);
   $x0 = $x;
   $y0 = $y;
  }
  imageline($img, $x0+$ox, $y0+$oy, $ox, $oy, $clr);
  list($x, $y) = getExy($a/2, $b/2, ($d+$sd)/2);
  imagefill($img, $x+$ox, $y+$oy, $clr);
 }
 /**
  * 根据$clr颜色获取对应的柱的阴影色
  * @param $img  图像
  * @param $clr  颜色
  * @return rgb颜色数组
  */
 function drawDarkColor($img,$clr){
  $rgb = imagecolorsforindex($img,$clr);
  return array($rgb["red"]/2,$rgb["green"]/2,$rgb["blue"]/2);
 }
 /**
  * 求角度$d对应的椭圆上的点坐标
  *
  * @param $a 横坐标
  * @param $b 纵坐标
  * @param $d 角度
  * @return 对应椭圆点坐标
  */
 function getExy($a, $b, $d){
  $d = deg2rad($d);
  return array(round($a*cos($d)), round($b*sin($d)));
 }
 /**
  * 为图像分配RGB索引色
  */
 function drawIndexColor($img, $clr){
  $red = ($clr>>16) & 0xff;
  $green = ($clr>>8)& 0xff;
  $blue = ($clr) & 0xff;
  return imagecolorallocate($img, $red, $green, $blue);
 }
//测试示例
$title = "动物园动物种类分布情况";
$dataArr = array(20, 10, 20, 20, 10, 20, 30, 10); //测试数据数组
$labelArr = array("大象", "长颈鹿", "鳄鱼", "鸵鸟", "老虎", "狮子", "猴子", "斑马");//标签
$colorArr = array(0x99ff00, 0xff6666, 0x0099ff, 0xff99ff, 0xffff99, 0x99ffff, 0xff3333, 0x009999); //对应颜色数组
$result = drawPieImg($title, $dataArr,$labelArr,$colorArr);
echo "利用php绘制饼状图的实现代码_php技巧";
?>

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles