当前位置:首页 > PHP教程 > php图像处理 > 列表

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 表示欲涂上的颜色.

  1. //发送头文件 
  2. header("content-type: image/png"); 
  3. //创建真彩色图像 
  4. $im=imagecreatetruecolor(100,50); 
  5. //定义黑色 
  6. $black=imagecolorallocate($im,0,0,0); 
  7. //定义白色 
  8. $white=imagecolorallocate($im,255,255,255); 
  9. //画一矩形并填充 
  10. imagefilledrectangle($im,0,0,99,49, $white); 
  11. //定义字体 
  12. imagestring($im,2,0,0,"hello",$black); 
  13. //开源代码phpfensi.com 
  14. //输出图像 
  15. imagepng($im); 
  16. /*

Tags: imagefilledrectangle php画一矩形

分享到: