PHP绘制时钟高洛峰细说PHP
显示页面代码
成都创新互联公司成立于2013年,是专业互联网技术服务公司,拥有项目网站设计制作、网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元肃宁做网站,已为上家服务,为肃宁各地企业和个人服务,联系电话:18982081108
time
画图页面代码
/* * 绘制时钟 */ //获取系统时间 date_default_timezone_set('PRC'); $h = date('H'); $i = date('i'); $s = date('s'); //1.创建资源 画布的大小 $img = p_w_picpathcreatetruecolor(200, 250); $white = p_w_picpathcolorallocate($img, 0xFF, 0xFF, 0xFF); $red = p_w_picpathcolorallocate($img, 255, 0, 0); $blue = p_w_picpathcolorallocate($img,0, 0, 0xFF); $pink = p_w_picpathcolorallocate($img, 0xFF, 0, 0xFF); p_w_picpathfill($img,0,0,$white); //画椭圆 p_w_picpathellipse($img, 100, 100, 190, 190, $blue); p_w_picpathfilledellipse($img, 100, 100, 4, 4, $blue); p_w_picpathstring($img, 4, 95, 8, '12', $pink); p_w_picpathstring($img, 4, 175, 95, '03', $pink); p_w_picpathstring($img, 4, 95, 175, '06', $pink); p_w_picpathstring($img, 4, 11, 95, '09', $pink); //秒针 $len = 80; $a = $len*sin(pi()/30*$s);//注意是秒针与竖线形成的夹角 每秒走过6度 sin()里面是按弧度作为参数 要将度换算成弧度 $b = $len*cos(pi()/30*$s); $x = 100 + $a;//秒针线末端x轴的坐标 $y = 100 - $b;//秒针线末端y轴的坐标 //分钟 $len1 =1; $a1 = $len*sin(pi()/1800*$s); $b1 = $len*cos(pi()/1800*$s); $x1 = 100 + $a1;//秒针线末端x轴的坐标 $y1 = 100 - $b1;//秒针线末端y轴的坐标 //秒针 p_w_picpathline($img, 100, 100, $x, $y, $red); //指针 p_w_picpathline($img, 100, 100, $x1, $y1,$blue); //数字的时间 p_w_picpathstring($img, 5, 20, 230, "now:{$h}:{$i}:{$s}",$red); //4.保存 或输出给浏览器 写第二个参数就是保存 header('Content-type:p_w_picpath/jpeg'); p_w_picpathpng($img); //5.释放资源 p_w_picpathdestroy($img);
结果为
分享题目:PHP绘制时钟高洛峰细说PHP
转载来于:http://ybzwz.com/article/gggscj.html