php做饼图的函数(转)

饼图|函数

php做饼图的函数
作者:qdlover   发表日期:2000年9月15日   阅读次数:14
--------------------------------------------------------------------------------

再介绍一下我自己,呵呵
我是个新手,当时学php纯粹是为了应付领导哦,让我们做统计图,我本来是学asp的,突然改行很不适应,不过php功能的确很强大呀,呵呵,我都离不了他了,这不,饼图,柱型图都搞定了,可是还有很多问题我不会,还希望大家多指教呀,说了好多废话了,我还以为是在写信那
我的联系方式是:
               email:qingdaohb@yeah.net
               http://qdlover.yeah.net
老板催了,没办法,饼图函数出炉了,大家快抢呀

########
bimage.php3
########
<?
/*
函数说明
$chartdata:数据,是数组元素
$chartfont:字号
$chartdiameter:决定饼的大小(要看你饿不饿了,呵呵)
$chartlabel:标题,也是数组元素
$colorslice:颜色数组,例如$tmp=array255,255,255);$colorslic=array($tmp);
$colorborder:边框颜色,数组
$colortext :文本颜色,数组
$colorbody:背景颜色,数组
$file:输出图片文件名*/
function bimage($chartdata,
                $chartfont,
                $chartdiameter ,
                $chartlabel ,
                $colorslice,
                $colorbody ,
                $colorborder,
                $colortext ,
                $file
                )
{
$chartdiameter=150;

     $chartfontheight=imagefontheight($chartfont);
     $d1=10;$d2=20;$d3=30;$d4=40;$d5=50;
     $chartdata=array($d1,$d2,$d3,$d4,$d5);
     $chartlabel=array("D1","D2","D3","D4","D5");
     $chartwidth=$chartdiameter+20;
     $chartheight=$chartdiameter+20+(($chartfontheight+2)*count($chartdata));
     header("content-type:image/gif");
     $image=imagecreate($chartwidth,$chartheight);
$colorbody =imagecolorallocate ($image,$colorbody[0],$colorbody[1],$colorbody[2]);
$colortext =imagecolorallocate ($image,$colortext[0],$colortext[1],$colortext[2]);
$colorborder =imagecolorallocate ($image,$colorborder[0],$colorborder[1],$colorborder[2]);
for ($i=0;$i<count($colorslice);$i++)
{
$t=imagecolorallocate($image,$colorslice[$i][0],$colorslice[$i][1],$colorslice[$i][2]);
$colorslice[$i]=$t;
}

     for($i=0;$i<count($chartdata);$i++)
     {
     $charttotal+=$chartdata[$i];
     }
     $chartcenterx=$chartdiameter/2+10;
     $chartcentery=$chartdiameter/2+10;
    $degrees=0;
    for($i=0;$i<count($chartdata);$i++)
    {
    $startdegrees=round($degrees);
    $degrees+=(($chartdata[$i]/$charttotal)*360);
    $enddegrees=round($degrees);
    $currentcolor=$colorslice[$i%(count($colorslice))];
    imagearc($image ,
             $chartcenterx,
             $chartcentery,
             $chartdiameter,
             $chartdiameter,
             $startdegrees,
             $enddegrees,
             $currentcolor);
             list($arcx,$arcy)=circle_point($startdegrees,$chartdiameter);

             imageline($image,
                       $chartcenterx,
                       $chartcentery,
                       floor($chartcenterx+$arcx),
                       floor($chartcentery+$arcy),
                       $currentcolor );
             list($arcx,$arcy)=circle_point($enddegrees,$chartdiameter);

             imageline($image,
                       $chartcenterx,
                       $chartcentery,
                       ceil($chartcenterx+$arcx),
                       ceil($chartcentery +$arcy),
                       $currentcolor);

             $midpoint=round((($enddegrees-$startdegrees)/2)+$startdegrees);
             list($arcx,$arcy)= circle_point ( $midpoint, $chartdiameter/2);
             imagefilltoborder($image,
                               floor($chartcenterx+$arcx),
                               floor($chartcentery+$arcy),
                               $currentcolor,
                               $currentcolor);
     }
     imagearc($image,
              $chartcenterx,
              $chartcentery,
              $chartdiameter,
              $chartdiameter,
              0,360,
              $colorborder);
     imagefilltoborder ($image,
                        floor($chartcenterx +( $chartdiameter /2)+2),
                        $chartcentery ,
                        $colorborder,
                        $colorborder );
      for ($i=0;$i<count($chartdata);$i++)
      {
      $currentcolor=$colorslice[$i%(count($colorslice))];
      $liney=$chartdiameter+20+($i*($chartfontheight+2));
      imagerectangle ($image,
                      10,
                      $liney,
                      20+$chartfontheight,
                      $liney+$chartfontheight,
                      $colorbody);
      imagefilltoborder($image,
                       12,
                       $liney+2,
                       $colorbody,
                       $currentcolor);
      imagestring($image,
                  $chartfont,
                  40+$chartfontheight,
                  $liney,
                  "$chartlabel[$i]:$chartdata[$i]",
                  $colortext);

      }

         imagegif ($image,$file);

}

function radians($degrees)
     {
     return($degrees*(pi()/180.0));
     }
function circle_point($degrees,$diameter)
     {
     $x=cos(radians($degrees))*($diameter/2);
     $y=sin(radians($degrees))*($diameter/2);
     return (array($x,$y));
     }
            ?>
###########
这是一个调用的例子
###########

<?
include("bfunc.php3");
$chartdiameter=250;
     $chartfont=5;
     $d1=10;$d2=20;$d3=30;$d4=40;$d5=50;
     $chartdata=array($d1,$d2,$d3,$d4,$d5);
     $chartlabel=array("D1","D2","D3","D4","D5");

     $colorbody=array(0xff,0xff,0xff);
     $colorborder=array(0x00,0x00,0x00);
     $colortext=array(0xff,0xff,0xff);

     $color1=array(0xff,0x00,0x00);
     $color2=array(0x00,0xff,0x00);
     $color3=array(0x00,0x00,0xff);
     $color4=array(0xff,0xff,0x00);
     $color5=array(0xff,0x00,0xff);
     $colorslice=array($color1 ,$color2,$color3,$color4,$color5);
$file="tj.gif"
bimage($chartdata,
       $chartfont,
       $chartdiameter ,
       $chartlabel ,
       $colorslice,
       $colorbody ,
       $colorborder,
       $colortext ,
       $file       )
?>

【奥索网版权所有,如需转载,请注明出处】    

时间: 2025-01-25 01:27:39

php做饼图的函数(转)的相关文章

php做饼图的函数

饼图|函数 ######## bimage.php3 ######## /* 函数说明 $chartdata:数据,是数组元素 $chartfont:字号 $chartdiameter:决定饼的大小(要看你饿不饿了,呵呵) $chartlabel:标题,也是数组元素 $colorslice:颜色数组,例如$tmp=array255,255,255);$colorslic=array($tmp); $colorborder:边框颜色,数组 $colortext :文本颜色,数组 $colorbod

asp+XMLHTTP组件做采集常用函数收集

asp+|xml|采集|函数 asp+XMLHTTP组件做采集常用函数其中的html代码处理函数很管用,写得相当漂亮 <%'=================================================='函数名:GetHttpPage'作 用:获取网页源码'参 数:HttpUrl ------网页地址'==================================================Function GetHttpPage(HttpUrl)If IsNul

asp生成三维饼图的函数_应用技巧

为方便生成三维饼图函数,我收集了asp下的生成三维饼图的函数的代码,方便大家特殊情况下的使用 复制代码 代码如下: <% '参数含义(数组,横坐标,纵坐标,图表的宽度,图表的高度,图表标题,单位) function table2(stat_array,table_left,table_top,all_width,all_height,table_title,unit)        dim bg_color(10),pie(10)        bg_color(1)="#ff1919&q

asp生成三维饼图的函数

为方便生成三维饼图函数,我收集了asp下的生成三维饼图的函数的代码,方便大家特殊情况下的使用 复制代码 代码如下: <% '参数含义(数组,横坐标,纵坐标,图表的宽度,图表的高度,图表标题,单位) function table2(stat_array,table_left,table_top,all_width,all_height,table_title,unit)        dim bg_color(10),pie(10)        bg_color(1)="#ff1919&q

ASP生成柱状图,折线图,饼图源代码函数

饼图|函数|源代码|折线图|柱状图 以下是柱状图代码:<% function table1(total,table_x,table_y,thickness,table_width,all_width,all_height,table_type) '参数含义(传递的数组,横坐标,纵坐标,柱子的厚度,柱子的宽度,图表的宽度,图表的高度,图表的类型) '纯ASP代码生成图表函数1--柱状图 '欢迎您再次访问阿里西西WEB开发社区,http://www.alixixi.com.dim tb_color(

函数类型做参数-Swift函数类型作函数参数与闭包有什么区别?

问题描述 Swift函数类型作函数参数与闭包有什么区别? 各路大神,请指教啊 func printIntNum(add: (Int, Int) -> Int, a: Int, b: Int) { println("num = (add(a,b))") } 这个函数中参数 add该怎么理解,在外部调用时,既可以用一个闭包block直接实现,还可以用另外一个函数去代替,该怎么理解??? 解决方案 这是一件事情的两个说法,函数类型作函数参数,就是把函数作为参数传进去,既可以传匿名函数,

3维饼图

饼图 一直想发表点东西.最近刚把php4中的php_gd.dll搞定,就迫不及待的想做点图形程序玩玩.看到有许多php做饼图的例子,看了一下都是2维的,于是就想做个3维的.经过努力pie3d完成了,好东西与大家分享.不过小弟是php新手,代码可能不够精炼,希望大家指教共同来完善这个程序.记得通知我(estorm@yeah.net) +------------------------+ | pie3dfun.php//公用函数 | +------------------------+ define

ASP应用中的应用函数

函数|函数 1,经常写些系统,那么一般都是从登录程序开始,每接一个系统就写一次登录,好麻烦. 干脆直接做个登录验证函数吧,对我来说,大都情况可以胜任了:) <%Function chk_regist(requestname,requestpwd,tablename,namefield,pwdfield,reurl)dim cn_name,cn_pwdcn_name=trim(request.form(""&requestname&""))cn_

用 PHP 开发健壮的代码(三):编写可重用函数

函数 在本系列文章(有关如何在实际情况下开发有效的 PHP 代码)的第 3 部分中,Amol Hatwar 讨论了如何构建最有效的功能型函数,使用这些函数不会牺牲太多性能或可管理性.作者重点阐述了如何编写可重用函数,并介绍了如何避免与该任务相关的一些最常见问题.欢迎回来.在本系列文章的第 1 部分中,我讨论了一些基本的 PHP 设计规则,并介绍了如何编写安全.简单.与平台无关且快速的代码.在第 2 部分中,我介绍了变量,并讨论了它们在 PHP 编码中的用法 - 好的和坏的实践. 在本文中,您将了