如何用php作线形图的函数

2016-01-29 14:21 25 1 收藏

如何用php作线形图的函数,如何用php作线形图的函数

【 tulaoshi.com - PHP 】

  很高兴大家对PHP如此的情有独钟!
下面就给大家介绍php作线形图的函数:

/*
函数说明
$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 ($i0)
{
imageline($image,$tmpx1,$tmpy1,$x1,$y1,$line);
}
$tmpx1=$x1;$tmpy1=$y1;
}
imagegif ($image,$file);
}
?


【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】    
 

来源:http://www.tulaoshi.com/n/20160129/1493076.html

延伸阅读
标签: PHP
php作wap开发时遇到的问题 作者: slamdunk3 1.文件格式 首先要遇到的问题肯定是文件格式,在作 web开发时,大家都是用的html或xhtml,到了wap开发时,就得用wml了.什么是wml?大家可以去查更详细的资料,我这里只是略微的提到. 在我看来wml类似于xml,有非常严格的格式,在作wap页面时,都得用wml来作为显示. wml的语法非常简单,在用p...
如何用AutoCAD快速修图   实例操作步骤如下: 制作之前我们首先准备好以下素材: 1、画出两条直线,介绍修剪工具的使用方法: 2、例如,要把下图红色笔圈住的的两段线删除: 3、选择修剪工具: 修剪工具使用方法一 1、第一种方法:选择需要修剪的对象,框选它,显示虚线状的,表示已经选中了,...
标签: PHP
  <?php #########随机广告显示##########   function myads(){ $dir="ads";   #设置存放记录的目录   //$dir="ads";   #设置存放记录的目录   $ads="$dir/ads.txt"; #设置广告代码文件 $log ="$dir/ads.log"; #设置ip记录文...
标签: PHP
搞了一天还是这个好( pear ,XML_parse, XML_RSS) PHP PEAR就提供一个 RSS 解析类,方便从用户提供的RSS中,获得相应的信息。     需求    下载XML_RSS: http://pear.php.net/package/XML_RSS    XML_Parser      http://pear.php.net/package/XML_P...
标签: Web开发
auto=1立即PRINT,否则timeOut毫秒后PRINT,如printPage(0,5000); function printPage($auto=1,$timeOut=10000) { if ($auto == 1) { echo " SCRIPT LANGUAGE="JavaScript" !-- Begin if (window.print) { window.print(); } else { alert('No printer driver in your PC'); } // End -- /script n"; } else { ech...

经验教程

552

收藏

73
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部