php GD绘制24小时柱状图_php技巧

80,250,430,134,35,60,233,90,263,225,120,59,151,677,340,221,550,300,229,97,230,123,133,87  一共24个数字 一个都不能少哦少了要出错 你可以修改函数判断一下

复制代码 代码如下:

<?PHP    
/*   
24小时柱状图   
作者:taokey   
QQ:29611705   
*/   

function h24($str){    

        $hour = explode(",",$str);    
        $hmax = max($hour);    
        $ppix = 150/$hmax;    

        //计算柱状图高度    
        $h0 = 190-$hour[0]*$ppix;    
        $h1 = 190-$hour[1]*$ppix;    
        $h2 = 190-$hour[2]*$ppix;    
        $h3 = 190-$hour[3]*$ppix;    
        $h4 = 190-$hour[4]*$ppix;    
        $h5 = 190-$hour[5]*$ppix;    
        $h6 = 190-$hour[6]*$ppix;    
        $h7 = 190-$hour[7]*$ppix;    
        $h8 = 190-$hour[8]*$ppix;    
        $h9 = 190-$hour[9]*$ppix;    
        $h10 = 190-$hour[10]*$ppix;    
        $h11 = 190-$hour[11]*$ppix;    
        $h12 = 190-$hour[12]*$ppix;    
        $h13 = 190-$hour[13]*$ppix;    
        $h14 = 190-$hour[14]*$ppix;    
        $h15 = 190-$hour[15]*$ppix;    
        $h16 = 190-$hour[16]*$ppix;    
        $h17 = 190-$hour[17]*$ppix;    
        $h18 = 190-$hour[18]*$ppix;    
        $h19 = 190-$hour[19]*$ppix;    
        $h20 = 190-$hour[20]*$ppix;    
        $h21 = 190-$hour[21]*$ppix;    
        $h22 = 190-$hour[22]*$ppix;    
        $h23 = 190-$hour[23]*$ppix;    

        //创建一个img    
        $img = imagecreate(755,210);    
        //背景    
        $bgc = imagecolorallocate ($img, 245, 250, 254);    
        //黑色    
        $bc = imagecolorallocate($img,0,0,0);    
        //画竖轴    
        imageline($img,15,30,15,189, $bc);    
        //画横轴    
        imageline($img,15,190,750,190, $bc);    

        //画竖轴点    
        for($i=39,$j=10;$i<189;$i=$i+15,$j--){    
                imageline($img,13,$i,15,$i, $bc);    
                imagestring($img,1,1,$i-4,$j."x", $bc);    
        }    

        //画横轴点    
        $t = true;    
        for($i=31,$j=29;$i<750;$i=$j+1,$j=$j+15){    
                if($t){    
                        $x=$i;    
                        $t=false;    
                }else{    
                        $x=$i+1;    
                        $t=true;    
                }    
                imageline($img,$x,190,$x,192, $bc);    
        }    
        //竖轴标记    
        $x = ceil($hmax/10);    
        imagestring($img,2,10,15,"X=".$x,$bc);    
        //竖轴标记    

        //0点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,31,$h0,45,189,$color);    
        imagestring($img,1,31,$h0-10,$hour[0],$color);    
        imagechar($img,1,36,195,0,$bc);    

        //1点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,61,$h1,75,189,$color);    
        imagestring($img,1,61,$h1-10,$hour[1],$color);    
        imagechar($img,1,66,195,1,$bc);    

        //2点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,91,$h2,105,189,$color);    
        imagestring($img,1,91,$h2-10,$hour[2],$color);    
        imagechar($img,1,96,195,2,$bc);    

        //3点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,121,$h3,135,189,$color);    
        imagestring($img,1,121,$h3-10,$hour[3],$color);    
        imagechar($img,1,126,195,3,$bc);    

        //4点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,151,$h4,165,189,$color);    
        imagestring($img,1,151,$h4-10,$hour[4],$color);    
        imagechar($img,1,156,195,4,$bc);    

        //5点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,181,$h5,195,189,$color);    
        imagestring($img,1,181,$h5-10,$hour[5],$color);    
        imagechar($img,1,186,195,5,$bc);    

        //6点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,211,$h6,225,189,$color);    
        imagestring($img,1,211,$h6-10,$hour[6],$color);    
        imagechar($img,1,216,195,6,$bc);    

        //7点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,241,$h7,255,189,$color);    
        imagestring($img,1,241,$h7-10,$hour[7],$color);    
        imagechar($img,1,246,195,7,$bc);    

        //8点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,271,$h8,285,189,$color);    
        imagestring($img,1,271,$h8-10,$hour[8],$color);    
        imagechar($img,1,276,195,8,$bc);    

        //9点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,301,$h9,315,189,$color);    
        imagestring($img,1,301,$h9-10,$hour[9],$color);    
        imagechar($img,1,306,195,9,$bc);    

        //10点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,331,$h10,345,189,$color);    
        imagestring($img,1,331,$h10-10,$hour[10],$color);    
        imagestring($img,1,334,195,10,$bc);    

        //11点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,361,$h11,375,189,$color);    
        imagestring($img,1,361,$h11-10,$hour[11],$color);    
        imagestring($img,1,364,195,11,$bc);    

        //12点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,391,$h12,405,189,$color);    
        imagestring($img,1,391,$h12-10,$hour[12],$color);    
        imagestring($img,1,394,195,12,$bc);    

        //13点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,421,$h13,435,189,$color);    
        imagestring($img,1,421,$h13-10,$hour[13],$color);    
        imagestring($img,1,424,195,13,$bc);    

        //14点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,451,$h14,465,189,$color);    
        imagestring($img,1,451,$h14-10,$hour[14],$color);    
        imagestring($img,1,454,195,14,$bc);    

        //15点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,481,$h15,495,189,$color);    
        imagestring($img,1,481,$h15-10,$hour[15],$color);    
        imagestring($img,1,481,195,15,$bc);    

        //16点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,511,$h16,525,189,$color);    
        imagestring($img,1,511,$h16-10,$hour[16],$color);    
        imagestring($img,1,511,195,16,$bc);    

        //17点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,541,$h17,555,189,$color);    
        imagestring($img,1,541,$h17-10,$hour[17],$color);    
        imagestring($img,1,544,195,17,$bc);    

        //18点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,571,$h18,585,189,$color);    
        imagestring($img,1,571,$h18-10,$hour[18],$color);    
        imagestring($img,1,571,195,18,$bc);    

        //19点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,601,$h19,615,189,$color);    
        imagestring($img,1,601,$h19-10,$hour[19],$color);    
        imagestring($img,1,604,195,19,$bc);    

        //20点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,631,$h20,645,189,$color);    
        imagestring($img,1,631,$h20-10,$hour[20],$color);    
        imagestring($img,1,634,195,20,$bc);    

        //21点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,661,$h21,675,189,$color);    
        imagestring($img,1,661,$h21-10,$hour[21],$color);    
        imagestring($img,1,664,195,21,$bc);    

        //22点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,691,$h22,705,189,$color);    
        imagestring($img,1,691,$h22-10,$hour[22],$color);    
        imagestring($img,1,694,195,22,$bc);    

        //23点    
        $color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));    
        imagefilledrectangle($img,721,$h23,735,189,$color);    
        imagestring($img,1,721,$h23-10,$hour[23],$color);    
        imagestring($img,1,724,195,23,$bc);    

        //加个边框 加了之后不好看    
        //imagerectangle($img, 0, 0, 754, 209, $bc);    

        imagepng($img);    
        imagedestroy($img);            
}    
$str = isset($_GET['str'])?$_GET['str']:"";    
if($str){    
        h24($str);    
}    
?>

时间: 2024-09-17 03:37:04

php GD绘制24小时柱状图_php技巧的相关文章

php利用gd库为图片添加水印_php技巧

本文实例为大家分享了php利用gd库为图片添加水印的方法,供大家参考,具体内容如下 <?php $dst_path = '1.jpg';//目标图片 $src_path = 'logo1.png';//水印图片 //创建图片的实例 $dst = imagecreatefromstring(file_get_contents($dst_path)); $src = imagecreatefromstring(file_get_contents($src_path)); //获取水印图片的宽高 li

php使用Jpgraph绘制柱形图的方法_php技巧

本文实例讲述了php使用Jpgraph绘制柱形图的方法.分享给大家供大家参考.具体实现方法如下: <?php include ("src/jpgraph.php"); include ("src/jpgraph_bar.php"); $data = array(19,23,34,38,45,67,71,78,85,87,90,96); //定义数组 $graph = new Graph(400,300); //创建新的Graph对象 $graph->Se

php使用GD实现颜色渐变实例_php技巧

本文实例讲述了php使用GD实现颜色渐变的方法.分享给大家供大家参考.具体实现方法如下: <?php $im = imagecreate(255, 255); $bg = imagecolorallocate($im, 0, 0, 0); for ($i = 255; $i >= 0; $i--) { $color = imagecolorallocate($im, $i, $i, $i); imagefilledrectangle($im, 0, $i, 255, 1, $color); }

php绘制圆形的方法_php技巧

本文实例讲述了php绘制圆形的方法.分享给大家供大家参考.具体实现方法如下: php绘图的基本步骤,有四步(php.ini里的 extension = php_gb2.dll 组件首先需要启用) 1.创建画布: 2.画出所需要的图像(圆.直线.矩形.扇形.弧线.......): 3.输出到网页,或者另存: 4.销毁图片(目的是释放图像所占用的内存). 网站开发最常用的三种图像格式:gif.jpg/jpeg.png (1)gif格式:压缩率最高,但只能显示256色,可能造成色彩的丢失.优势:可能显

php将12小时制转换成24小时制的方法_php技巧

本文实例讲述了php将12小时制转换成24小时制的方法.分享给大家供大家参考.具体如下: php将12小时制转换成24小时制,输入格式为:02:30:00 pm 转换成:14:30:00 <?php function to_24_hour($hours,$minutes,$seconds,$meridiem){ $hours = sprintf('%02d',(int) $hours); $minutes = sprintf('%02d',(int) $minutes); $seconds =

12小时制和24小时制获取当天零点的问题探讨_实用技巧

最近在写定时服务的时候,要获取当天的零点这个时间,但是是这样获取的 复制代码 代码如下: DateTime dt = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-dd")+" 00:00:00");Console.WriteLine(dt.ToString("yyyy-MM-dd HH:mm:ss")); 在本地,测试,QA环境测试了均没有问题,但是上了公网服务器以后,这个定时服务,就出问题了:写了

两千行代码的PHP学习笔记汇总_php技巧

本文汇总了PHP学习中常见的各类问题,约有两千多行代码,都是非常实用的技巧.分享给大家供大家参考.具体如下: //语法错误(syntax error)在语法分析阶段,源代码并未被执行,故不会有任何输出. /* [命名规则] */ 常量名 类常量建议全大写,单词间用下划线分隔 // MIN_WIDTH 变量名建议用下划线方式分隔 // $var_name 函数名建议用驼峰命名法 // varName 定界符建议全大写 // <<<DING, <<<'DING' 文件名建议

亲身实践新站24小时收录 把握时机让百度收录很容易

这周一直在忙着做网站,做什么网站呢?前段时间小邓一直在研究淘宝客网站,对淘宝客还是抱着非常大的希望的,很看好这种模式;郁闷的就是这么晚才开始操作,虽说不晚,但就是没以前轻松了;既然打算干,我这人是急性子,说干就干;于是呼这周一下子就做了几个新的网站,都是新注册的域名,空间程序模板都是现成买的修改的,整个操作过程很普通;既然是从新站开始做,那么对于网站的优化就有一些经验可以分享给大家了;今天主要给大家分享的是如何让你的新站在24小时之内收录?以前大家看到这样的标题可能会以为是标题党,或者是眼子帖而

PHP入门教程之日期与时间操作技巧总结(格式化,验证,获取,转换,计算等)_php技巧

本文实例讲述了PHP日期与时间操作技巧.分享给大家供大家参考,具体如下: Demo1.php <?php //验证时间 //checkdate() 1.月份 2.日 3.年 //checkdate() 判断这个日期是否是合法的日期 //不合法的日期,试一试 if(checkdate(7,16,2010)){ echo '这个日期是合法有效的'; }else{ echo '这个日期是非法的.'; } ?> Demo2.php <?php //date -- 格式化一个本地时间/日期 //d