图形类->gd.class.php

图形

<?php

 

class GD{
 /*
函数说明
$data:y轴数据(数组)
$graphdata:y轴数据--百分比(数组)
$label:x轴数据(数组)
$height:图像高度
$width:图像宽度
$font:字号
$dot:决定点的大小
$bg:背景色
$line :线色
$text :文本色
$dotcolor:点色
$file:输出图像文件名
*/
//线形图的函数
function qximage($data , $graphdata, $label , $height, $width , $font, $dot, $bg, $line, $text, $dotcolor, $file)
{
$jc=$height/100;
$fontwidth= imagefontwidth ($font);
$fontheight=imagefontheight($font);

$image= imagecreate ($width,$height+20);
$bg= imagecolorallocate($image ,$bg[0],$bg[1],$bg[2]);
$line=imagecolorallocate($image ,$line[0],$line[1],$line[2]);
$text=imagecolorallocate($image ,$text[0],$text[1],$text[2]);
$dotcolor=imagecolorallocate($image ,$dotcolor[0],$dotcolor[1],$$dotcolor[2]);
imageline ($image,0,0,0,$height,$line);
imageline($image,0,$height,$width,$height,$line);
for ($i=1;$i<11;$i++)
{
 imagedashedline($image,0,$height - $jc*$i*10 ,$width ,$height -$jc*$i*10 ,$line );
 imagestring ($image,$font,0,$height-$jc*$i*10,$i*10,$text);
}
for ($i=0;$i {
 #echo $tmp." ";
 $x1=(($width-50)/count($data))*($i)+40;
 #echo $x1 ." ";
 $y1=$height-$graphdata[$i]*$jc;
 $x2=$x1;
 $y2=$y1+$graphdata[$i]*$jc;
 #echo $y1." ";
 imagestring($image,$font,$x1,$y1-2*$fontheight,$graphdata[$i]."%(".$data[$i].")",$text);
 imagearc ($image,$x1 ,$y1,$dot,$dot,0,360,$dotcolor);
 imagefilltoborder ($image,$x1,$y1,$dotcolor,$dotcolor);
 imagestring ($image,$font,$x1,$y2,$label[$i],$text);
 if ($i>0)
 {
  imageline($image,$tmpx1,$tmpy1,$x1,$y1,$line);
 }
 $tmpx1=$x1;$tmpy1=$y1;
}
imagegif ($image,$file);
}
//为了方便起见,我又做了一个函数来制作柱型图
/*参数说明:
$graphdata:百分比数据(y轴)
$label:x轴标题
$data:实际数据(y轴)
$graphwidth:图像宽度
$graphheight:图像高度
$graphscale:高度因子(为$graphheight/100)
$graphfont:字体号
$bg;背景颜色值
$text:文本颜色值
$grid:边线颜色值
$bar:柱的颜色值
$bz:备注(不支持中文呀)
*/
 function timage(
 $graphdata,$label,$data,
 $graphwidth,$graphheight,$graphscale,$graphfont,
 $bg,$text,$grid,$bar,$bz)
 {

 header("Content-type:image/gif");
 $image=imagecreate($graphwidth+50,$graphheight+50);
 $bgcolor= imagecolorallocate ($image ,$bg[0],$bg[1],$bg[2]);
 $textcolor= imagecolorallocate ($image ,$text[0],$text[1],$text[2]);
 $gridcolor=imagecolorallocate ($image ,$grid[0],$grid[1],$grid[2]);
 $barcolor=imagecolorallocate ($image ,$bar[0],$bar[1],$bar[2]);
 $gridabelwidth=imagefontwidth($graphfont)*3+1;
 $gridableheight= imagefontheight ($graphfont);
 imageline($image,$gridlabelwidth,0,$gridlabelwidth,$graphheight-1,$gridcolor);
 imageline($image,0,$graphheight-1,$graphwidth-1,$graphheight-1,$gridcolor);
 for($i=0;$i<$graphheight;$i+=$graphheight/10)
 {
  imagedashedline ($image,0,$i,$graphwidth-1,$i,$gridcolor);
  imagestring($image,$graphfont,0,$i,round(($graphheight-$i)/$graphscale),$textcolor);
 }

 $barwidth=(($graphwidth-$gridlabelwidth)/count($graphdata))-30;#¿ØÖÆÖùµÄ×Ü¿í¶È
 for($i=0;$i {
  $bartopx=$gridlabelwidth+(($i+1)*20)+($i*$barwidth);#¿ØÖÆÖù¿¿×óµÄ¾àÀë
  $barbottomx=$bartopx+$barwidth;  $barbottomy=$graphheight-1;#¿ØÖÆÖùµÄϱ߽ç
  $bartopy=$barbottomy-($graphdata[$i]*$graphscale);
  imagefilledrectangle($image,$bartopx,$bartopy,$barbottomx,$barbottomy,$barcolor);
  $labelx1=$bartopx;
  $labely1=$bartopy-15;
  $labelx2=$bartopx;
  $labely2=$graphheight;
  imagestring($image,$graphfont,$labelx1,$labely1,"$graphdata[$i]"."%",$textcolor);
  imagestring($image,$graphfont,$labelx2,$labely2,"$label[$i]",$textcolor);
  imagestringup ($image,$graphfont,$labelx1+10,$labely1-$gridableheight,"$data[$i]",$textcolor);
 }
 imagestring($image,$graphfont,1,$graphheight+30,$bz,$textcolor);
 imagegif ($image);
 }

//PHP数据饼图
 define("ANGLE_STEP", 5);    //定义画椭圆弧时的角度步长

function draw_getdarkcolor($img,$clr)    //求$clr对应的暗色
{
    $rgb    =    imagecolorsforindex($img,$clr);
    return array($rgb["red"]/2,$rgb["green"]/2,$rgb["blue"]/2);
}

function draw_getexy($a, $b, $d)    //求角度$d对应的椭圆上的点坐标
{
    $d        =    deg2rad($d);
    return array(round($a*Cos($d)), round($b*Sin($d)));
}

function draw_arc($img,$ox,$oy,$a,$b,$sd,$ed,$clr)    //椭圆弧函数
{
    $n                    =    ceil(($ed-$sd)/ANGLE_STEP);
    $d                    =    $sd;
    list($x0,$y0)        =    draw_getexy($a,$b,$d);
    for($i=0; $i<$n; $i++)

{
        $d                =    ($d+ANGLE_STEP)>$ed?$ed:($d+ANGLE_STEP);
        list($x, $y)    =    draw_getexy($a, $b, $d);
        imageline($img, $x0+$ox, $y0+$oy, $x+$ox, $y+$oy, $clr);
        $x0                =    $x;
        $y0                =    $y;
    }
}

function draw_sector($img, $ox, $oy, $a, $b, $sd, $ed, $clr)    //画扇面
{
    $n                    =    ceil(($ed-$sd)/ANGLE_STEP);
    $d                    =    $sd;
    list($x0,$y0)        =    draw_getexy($a, $b, $d);
    imageline($img, $x0+$ox, $y0+$oy, $ox, $oy, $clr);
    for($i=0; $i<$n; $i++)
    {
        $d                =    ($d+ANGLE_STEP)>$ed?$ed:($d+ANGLE_STEP);
        list($x, $y)    =    draw_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)        =    draw_getexy($a/2, $b/2, ($d+$sd)/2);
    imagefill($img, $x+$ox, $y+$oy, $clr);
}

function draw_sector3d($img, $ox, $oy, $a, $b, $v, $sd, $ed, $clr)    //3d扇面
{
    draw_sector($img, $ox, $oy, $a, $b, $sd, $ed, $clr);
    if($sd<180)
    {
        list($R, $G, $B)    =    draw_getdarkcolor($img, $clr);
        $clr=imagecolorallocate($img, $R, $G, $B);
        if($ed>180) $ed        =    180;
        list($sx, $sy)        =    draw_getexy($a,$b,$sd);
        $sx                    +=    $ox;
        $sy                    +=    $oy;
        list($ex, $ey)        =    draw_getexy($a, $b, $ed);
        $ex                    +=    $ox;
        $ey                    +=    $oy;
        imageline($img, $sx, $sy, $sx, $sy+$v, $clr);
        imageline($img, $ex, $ey, $ex, $ey+$v, $clr);
        draw_arc($img, $ox, $oy+$v, $a, $b, $sd, $ed, $clr);
        list($sx, $sy)        =    draw_getexy($a, $b, ($sd+$ed)/2);
        $sy                    +=    $oy+$v/2;
        $sx                    +=    $ox;
        imagefill($img, $sx, $sy, $clr);
    }
}

function draw_getindexcolor($img, $clr)    //RBG转索引色
{
    $R        =    ($clr>>16) & 0xff;
    $G        =    ($clr>>8)& 0xff;
    $B        =    ($clr) & 0xff;
    return imagecolorallocate($img, $R, $G, $B);
}

// 绘图主函数,并输出图片
// $datLst 为数据数组, $datLst 为标签数组, $datLst 为颜色数组
// 以上三个数组的维数应该相等
function draw_img($datLst,$labLst,$clrLst,$a=250,$b=120,$v=20,$font=10)
{
    $ox        =    5+$a;
    $oy        =    5+$b;
    $fw        =    imagefontwidth($font);
    $fh        =    imagefontheight($font);

    $n        =    count($datLst);//数据项个数

    $w        =    10+$a*2;
    $h        =    10+$b*2+$v+($fh+2)*$n;

    $img    =    imagecreate($w, $h);

    //转RGB为索引色
    for($i=0; $i<$n; $i++)
        $clrLst[$i]    =    draw_getindexcolor($img,$clrLst[$i]);

    $clrbk    =    imagecolorallocate($img, 0xff, 0xff, 0xff);
    $clrt    =    imagecolorallocate($img, 0x00, 0x00, 0x00);

    //填充背景色
    imagefill($img, 0, 0, $clrbk);

    //求和
    $tot    =    0;
    for($i=0; $i<$n; $i++)
        $tot    +=    $datLst[$i];

$sd        =    0;
    $ed        =    0; 333
    $ly        =    10+$b*2+$v;
    for($i=0; $i<$n; $i++)
    {
        $sd    =    $ed;
        $ed    +=    $datLst[$i]/$tot*360;

        //画圆饼
        draw_sector3d($img, $ox, $oy, $a, $b, $v, $sd, $ed, $clrLst[$i]);    //$sd,$ed,$clrLst[$i]);

        //画标签
        imagefilledrectangle($img, 5, $ly, 5+$fw, $ly+$fh, $clrLst[$i]);
        imagerectangle($img, 5, $ly, 5+$fw, $ly+$fh, $clrt);
        //imagestring($img, $font, 5+2*$fw, $ly, $labLst[$i].":".$datLst[$i]."(".(round(10000*($datLst[$i]/$tot))/100)."%)", $clrt);

        $str    =    iconv("GB2312", "UTF-8", $labLst[$i]);
        ImageTTFText($img, $font, 0, 5+2*$fw, $ly+13, $clrt, "./simsun.ttf", $str.":".$datLst[$i]."(".(round(10000*($datLst[$i]/$tot))/100)."%)");
        $ly        +=    $fh+2;
    }

    //输出图形
    header("Content-type: image/png");

    //输出生成的图片
    $imgFileName = "../temp/".time().".png";
    imagepng($img,$imgFileName);
    echo '<IMG SRC="'.$imgFileName.'" BORDER="1" ALT="统计饼图">';
}

$datLst    =    array(30, 10, 20, 20, 10, 20, 10, 20);    //数据
$labLst    =    array("中国科技大学", "安徽理工大学", "清华大学", "北京大学", "南京大学", "上海大学", "河海大学", "中山大学");    //标签
$clrLst    =    array(0x99ff00, 0xff6666, 0x0099ff, 0xff99ff, 0xffff99, 0x99ffff, 0xff3333, 0x009999);

//画图
draw_img($datLst,$labLst,$clrLst);
?>

?>

 

时间: 2024-09-19 06:21:42

图形类-&gt;gd.class.php的相关文章

PHPlot 5.7.0发布 创建图表的PHP图形类

PHPlot 是一个用于动态科学.商业,股市图表的图形库.它允许PHPhttp://www.aliyun.com/zixun/aggregation/7155.html">开发人员从一个PHP应用程序中创建饼形图,柱状图,线图,点图等. PHPLOT 是一个用于图表和平面图创建的PHP图形类.其工作原理是基于PHP5(但旧版本可以使用PHP4),使用PHP GD扩展来生成PNG.GIF或JPEG图像.支持TrueType字体(TTF),内置的GD字体,支持的绘图类型包括:area, bar

PHPlot 5.5.0发布 创建图表的PHP图形类

PHPlot 5.5.0此版本已嵌入到HTML页面中的绘图图象,所有的制作由PHP脚本生成.还有一个新的绘图类型,和其他新功能及错误修正. PHPlot参考手册已经更新,并增加新的例子. PHPLOT是一个用来创建图表的PHP图形类,需要 PHP5 的支持.PHPLot使用PHP的GD扩展来生成PNG/GIF/http://www.aliyun.com/zixun/aggregation/16701.html">JPEG 格式图片. 生成上面图形的代码如下:   # PHPlot Demo

新手求助 定义一个name 如何输入图形类的名字输出相应的类的内容

问题描述 新手求助 定义一个name 如何输入图形类的名字输出相应的类的内容 设计三个图形类:Circle(圆).Rectangle(矩形).Triangle(三角形): 1.Cirlce类基本信息:圆心坐标.半径: Rectangle类基本信息:长.宽: Triangle类基本信息:三个顶点坐标: 其中:成员变量为private属性,成员函数为public属性: 2.每个图形类有计算图形的面积GetArea(),显示图形的基本信息函数Show(): 现在我的代码不能实现 输入名字circle

java-Java图形类是如何绘图的

问题描述 Java图形类是如何绘图的 如题,java图形库为awt和swing,这些类库中元件均为继承关系,基础类分别是Component与JComponent,当我们继承自这些组件的类运行时,桌面便开始绘制并形成图形,关于这个绘图的"动作"在类库中我一直没找到,在component中有个Graphics有关的变量,似乎是做边框的,而Graphics只是个接口,并没有作图"动作"的实现,后面所有的组件也没有发现对这个接口的实现.还有一个Piont类,继承自Piont

结合GFX,DnD与Dijit创建基于Dojo的Web图形类应用

GFX(dojox.gfx)作为 Dojo 扩展组件之一,封装了底层浏览器中实际的图形引擎,使开发人员具备了 Web 绘图的基本能力,是此类应用的基础.同时,作为 Dojo 核心组件的 DnD(dojo.dnd),则实现了基于浏览器的鼠标拖拽操作,从而为图形组件选择,组件间连线等高级绘图操作提供了技术支持.再者,通过引入自定义 Dojo 小部件(dijit),开发人员可以对已有应用进行合理的扩展,使用户可以通过更为灵活的方式去操作图形.本文首先将对基于浏览器的绘图原理做一介绍,而后以层进的方式向

php 方便水印和缩略图的图形类_php技巧

复制代码 代码如下: <?php /* *@author    夜无眠    27262681@qq.com *copyright    http://www.gowake.cn */ class img {     function __construct($arg = null) {         $args = func_get_args();         if($arg == null) {             return null;         }         $t

PHPlot 5.4.0发布,PHP图表类

PHPLOT是一个用来创建图表的PHP图形类,需要PHP5的支持.PHPLot使用PHP的GD扩展来生成 PNG/GIF/JPEG 格式图片. 该版本新增了对legend定位和外观的控制功能,同时可控制水印和表格线,更新了文档说明,并为这些新的特性增加了例子. 原文出自:开源中国社区

WPF and Silverlight学习笔记(二十七):基本图形的使用(2)Path和位图操作

一.使用Path构建复杂图形 Path所构建的图形由Data属性来定义, 其属性的类型为Geometry(几何类),几何类类型的继承关系请参考我上一篇文章 .例如要创建一个100*30的矩形,可以有两种做法: 1: <StackPanel> 2: <!--使用Rectangle直接创建矩形图形- -> 3: <Rectangle Fill="Red" Width="100" Height="30" Horizonta

WPF and Silverlight学习笔记(二十六):基本图形使用(1)

在WPF中,极大地丰富了关于图形.图像等多媒体元素的操作功能,本节主要 讨论基本的图形. 一.基本的图形类型 对于WPF中的基本图形类 主要位于System.Windows.Shapes命名空间,其类包括: 需要说明的是,在System.Windows.Media命名空间也存在着类似的类 型: 对应在类名上,添加"Geometry",这种类称为"几何类 ",对于几何类只用来描述图形,而不使用任何的画笔(Pen)和刷子 (Brush),即本身没有任何的颜色,并不支持交