分享
 
 
 

用GD图库生成横竖柱状图折线图的类

王朝other·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

最近写的一个GD图库用以生成横竖柱状图和折线图的类库,算是一个教学例程吧

Class ImageReport{

var $X;//图片大小X轴

var $Y;//图片大小Y轴

var $R;//背影色R值

var $G;//...G.

var $B;//...B.

var $TRANSPARENT;//是否透明1或0

var $IMAGE;//图片对像

//-------------------

var $ARRAYSPLIT;//指定用于分隔数值的符号

var $ITEMARRAY;//数值

var $REPORTTYPE;//图表类型,1为竖柱形2为横柱形3为折线形

var $BORDER;//距离

//-------------------

var $FONTSIZE;//字体大小

var $FONTCOLOR;//字体颜色

//--------参数设置函数

function setImage($SizeX,$SizeY,$R,$G,$B,$Transparent){

$this->X=$SizeX;

$this->Y=$SizeY;

$this->R=$R;

$this->G=$G;

$this->B=$B;

$this->TRANSPARENT=$Transparent;

}

function setItem($ArraySplit,$ItemArray,$ReportType,$Border){

$this->ARRAYSPLIT=$ArraySplit;

$this->ITEMARRAY=$ItemArray;

$this->REPORTTYPE=$ReportType;

$this->BORDER=$Border;

}

function setFont($FontSize){

$this->FONTSIZE=$FontSize;

}

//----------------主体

function PrintReport(){

Header( "Content-type: image/gif");

//建立画布大小

$this->IMAGE=ImageCreate($this->X,$this->Y);

//设定画布背景色

$background=ImageColorAllocate($this->IMAGE,$this->R,$this->G,$this->B);

if($this->TRANSPARENT=="1"){

//背影透明

Imagecolortransparent($this->IMAGE,$background);

}else{

//如不要透明时可填充背景色

ImageFilledRectangle($this->IMAGE,0,0,$this->X,$this->Y,$background);

}

//参数字体文小及颜色

$this->FONTCOLOR=ImageColorAllocate($this->IMAGE,255-$this->R,255-$this->G,255-$this->B);

Switch ($this->REPORTTYPE){

case "0":

break;

case "1":

$this->imageColumnS();

break;

case "2":

$this->imageColumnH();

break;

case "3":

$this->imageLine();

break;

}

$this->printXY();

$this->printAll();

}

//-----------打印XY坐标轴

function printXY(){

//画XY坐标轴*/

$color=ImageColorAllocate($this->IMAGE,255-$this->R,255-$this->G,255-$this->B);

$xx=$this->X/10;

$yy=$this->Y-$this->Y/10;

ImageLine($this->IMAGE,$this->BORDER,$this->BORDER,$this->BORDER,$this->Y-$this->BORDER,$color);//X轴

ImageLine($this->IMAGE,$this->BORDER,$this->Y-$this->BORDER,$this->X-$this->BORDER,$this->Y-$this->BORDER,$color);//y轴

//Y轴上刻度

$rulerY=$this->Y-$this->BORDER;

while($rulerY>$this->BORDER*2){

$rulerY=$rulerY-$this->BORDER;

ImageLine($this->IMAGE,$this->BORDER,$rulerY,$this->BORDER-2,$rulerY,$color);

}

//X轴上刻度

$rulerX=$rulerX+$this->BORDER;

while($rulerX<($this->X-$this->BORDER*2)){

$rulerX=$rulerX+$this->BORDER;

//ImageLine($this->IMAGE,$this->BORDER,10,$this->BORDER+10,10,$color);

ImageLine($this->IMAGE,$rulerX,$this->Y-$this->BORDER,$rulerX,$this->Y-$this->BORDER+2,$color);

}

}

//--------------竖柱形图

function imageColumnS(){

$item_array=Split($this->ARRAYSPLIT,$this->ITEMARRAY);

$num=Count($item_array);

$item_max=0;

for ($i=0;$i<$num;$i++){

$item_max=Max($item_max,$item_array[$i]);

}

$xx=$this->BORDER*2;

//画柱形图

for ($i=0;$i<$num;$i++){

srand((double)microtime()*1000000);

if($this->R!=255 && $this->G!=255 && $this->B!=255){

$R=Rand($this->R,200);

$G=Rand($this->G,200);

$B=Rand($this->B,200);

}else{

$R=Rand(50,200);

$G=Rand(50,200);

$B=Rand(50,200);

}

$color=ImageColorAllocate($this->IMAGE,$R,$G,$B);

//柱形高度

$height=($this->Y-$this->BORDER)-($this->Y-$this->BORDER*2)*($item_array[$i]/$item_max);

ImageFilledRectangle($this->IMAGE,$xx,$height,$xx+$this->BORDER,$this->Y-$this->BORDER,$color);

ImageString($this->IMAGE,$this->FONTSIZE,$xx,$height-$this->BORDER,$item_array[$i],$this->FONTCOLOR);

//用于间隔

$xx=$xx+$this->BORDER*2;

}

}

//-----------横柱形图

function imageColumnH(){

$item_array=Split($this->ARRAYSPLIT,$this->ITEMARRAY);

$num=Count($item_array);

$item_max=0;

for ($i=0;$i<$num;$i++){

$item_max=Max($item_max,$item_array[$i]);

}

$yy=$this->Y-$this->BORDER*2;

//画柱形图

for ($i=0;$i<$num;$i++){

srand((double)microtime()*1000000);

if($this->R!=255 && $this->G!=255 && $this->B!=255){

$R=Rand($this->R,200);

$G=Rand($this->G,200);

$B=Rand($this->B,200);

}else{

$R=Rand(50,200);

$G=Rand(50,200);

$B=Rand(50,200);

}

$color=ImageColorAllocate($this->IMAGE,$R,$G,$B);

//柱形长度

$leight=($this->X-$this->BORDER*2)*($item_array[$i]/$item_max);

ImageFilledRectangle($this->IMAGE,$this->BORDER,$yy-$this->BORDER,$leight,$yy,$color);

ImageString($this->IMAGE,$this->FONTSIZE,$leight+2,$yy-$this->BORDER,$item_array[$i],$this->FONTCOLOR);

//用于间隔

$yy=$yy-$this->BORDER*2;

}

}

//--------------折线图

function imageLine(){

$item_array=Split($this->ARRAYSPLIT,$this->ITEMARRAY);

$num=Count($item_array);

$item_max=0;

for ($i=0;$i<$num;$i++){

$item_max=Max($item_max,$item_array[$i]);

}

//$xx=$this->BORDER;

//画柱形图

for ($i=0;$i<$num;$i++){

srand((double)microtime()*1000000);

if($this->R!=255 && $this->G!=255 && $this->B!=255){

$R=Rand($this->R,200);

$G=Rand($this->G,200);

$B=Rand($this->B,200);

}else{

$R=Rand(50,200);

$G=Rand(50,200);

$B=Rand(50,200);

}

$color=ImageColorAllocate($this->IMAGE,$R,$G,$B);

//柱形高度

$height_now=($this->Y-$this->BORDER)-($this->Y-$this->BORDER*2)*($item_array[$i]/$item_max);

if($i!="0"){

ImageLine($this->IMAGE,$xx,$height_next,$xx+$this->BORDER,$height_now,$color);

}

ImageString($this->IMAGE,$this->FONTSIZE,$xx+$this->BORDER,$height_now-$this->BORDER/2,$item_array[$i],$this->FONTCOLOR);

$height_next=$height_now;

//用于间隔

$xx=$xx+$this->BORDER;

}

}

//--------------完成打印图形http://knowsky.com

function printAll(){

ImageGIF($this->IMAGE);

ImageDestroy($this->IMAGE);

}

//--------------调试

function debug(){

echo "X:".$this->X."

Y:".$this->Y;

echo "

BORDER:".$this->BORDER;

$item_array=split($this->ARRAYSPLIT,$this->ITEMARRAY);

$num=Count($item_array);

echo "

数值个数:".$num."

数值:";

for ($i=0;$i<$num;$i++){

echo "

".$item_array[$i];

}

}

}

$report=new ImageReport;

$report->setImage(600,300,255,255,255,1);//参数(长,宽,背影色R,G,B,是否透明1或0)

$temparray="50,25,100,250,180,200,150,220,200,150,50,25,100,250,180,200,150,220,200,150";//数值,用指定符号隔开

$report->setItem(',',$

[1] [2] 下一页

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有