php GD绘制24小时柱状图


Posted in PHP onJune 28, 2008

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);     
}     
?>

PHP 相关文章推荐
域名查询代码公布
Oct 09 PHP
PHP实现根据浏览器跳转不同语言页面代码
Aug 02 PHP
Destoon旺旺无法正常显示,点击提示“会员名不存在”的解决办法
Jun 21 PHP
ThinkPHP模板IF标签用法详解
Jul 01 PHP
PHP统计数值数组中出现频率最多的10个数字的方法
Apr 20 PHP
php使用Jpgraph绘制简单X-Y坐标图的方法
Jun 10 PHP
PHP实现简单汉字验证码
Jul 28 PHP
PDO的安全处理与事物处理方法
Oct 31 PHP
php实现的统计字数函数定义与使用示例
Jul 26 PHP
PHP实现登录注册之BootStrap表单功能
Sep 03 PHP
PHP实现微信申请退款功能
Oct 01 PHP
使用Rancher在K8S上部署高性能PHP应用程序的教程
Jul 10 PHP
php 在线打包_支持子目录
Jun 28 #PHP
php 前一天或后一天的日期
Jun 28 #PHP
js下函数般调用正则的方法附代码
Jun 22 #PHP
php的正则处理函数总结分析
Jun 20 #PHP
PHP伪静态页面函数附使用方法
Jun 20 #PHP
PHP伪静态写法附代码
Jun 20 #PHP
用PHP伪造referer突破网盘禁止外连的代码
Jun 15 #PHP
You might like
德生BCL3000的电路分析和打磨
2021/03/02 无线电
一些php技巧与注意事项分析
2011/02/03 PHP
解析php中如何直接执行SHELL
2013/06/28 PHP
PHP中4个加速、缓存扩展的区别和选用建议
2014/03/12 PHP
php文件扩展名判断及获取文件扩展名的N种方法
2015/09/12 PHP
关于IE7 IE8弹出窗口顶上
2008/12/22 Javascript
Extjs学习笔记之四 工具栏和菜单
2010/01/07 Javascript
JAVASCRIPT实现的WEB页面跳转以及页面间传值方法
2010/05/13 Javascript
更快的异步执行(setTimeout多浏览器)
2014/08/12 Javascript
jQuery实现可关闭固定于底(顶)部的工具条菜单效果
2015/11/06 Javascript
javascript电商网站抢购倒计时效果实现
2015/11/19 Javascript
不得不分享的JavaScript常用方法函数集(上)
2015/12/23 Javascript
AngularJS转换响应内容
2016/01/27 Javascript
创建echart多个联动的示例代码
2018/11/23 Javascript
js实现继承的方法及优缺点总结
2019/05/08 Javascript
TypeScript的安装、使用、自动编译的实现
2020/04/10 Javascript
原生js canvas实现鼠标跟随效果
2020/08/02 Javascript
python实现网页链接提取的方法分享
2014/02/25 Python
python的绘图工具matplotlib使用实例
2014/07/03 Python
Python的设计模式编程入门指南
2015/04/02 Python
python实现bucket排序算法实例分析
2015/05/04 Python
网站渗透常用Python小脚本查询同ip网站
2017/05/08 Python
基于pip install django失败时的解决方法
2018/06/12 Python
使用python切片实现二维数组复制示例
2019/11/26 Python
OpenCV python sklearn随机超参数搜索的实现
2020/01/17 Python
pytorch 实现在一个优化器中设置多个网络参数的例子
2020/02/20 Python
使用opencv识别图像红色区域,并输出红色区域中心点坐标
2020/06/02 Python
越南综合购物网站:Lazada越南
2019/06/10 全球购物
医学类个人求职信范文
2014/02/05 职场文书
2014年仓库工作总结
2014/11/20 职场文书
五好家庭申报材料
2014/12/20 职场文书
滴水洞导游词
2015/02/10 职场文书
基层党支部承诺书
2015/04/30 职场文书
观后感开头
2015/06/19 职场文书
七年级英语教学反思
2016/02/15 职场文书
openstack中的rpc远程调用的方法
2021/07/09 Python