php imagefilledrectangle在图片画一矩形并填充
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 15:15:20 浏览: 评论:0
执行该代码将生成一幅png图像,并在图像上显示hello.
语法:int imagefilledrectangle(int im, int x1, int y1, int x2, int y2, int col);
返回值:整数
函数种类:图形处理
内容说明:本函数将图片的封闭长方形区域着色,参数 x1、y1 及 x2、y2 分别为矩形对角线的坐标,参数 col 表示欲涂上的颜色.
- //发送头文件
- header("content-type: image/png");
- //创建真彩色图像
- $im=imagecreatetruecolor(100,50);
- //定义黑色
- $black=imagecolorallocate($im,0,0,0);
- //定义白色
- $white=imagecolorallocate($im,255,255,255);
- //画一矩形并填充
- imagefilledrectangle($im,0,0,99,49, $white);
- //定义字体
- imagestring($im,2,0,0,"hello",$black);
- //开源代码phpfensi.com
- //输出图像
- imagepng($im);
- /*
Tags: imagefilledrectangle php画一矩形
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)