当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagefilledrectangle()用法及代码示例


imagefilledrectangle()函数是PHP中的一个内置函数,用于创建填充矩形。此函数在图像中创建一个填充有给定颜色的矩形。图像的左上角是(0,0)。

用法:

bool imagefilledrectangle( $image, $x1, $y1, $x2, $y2, $color )

参数:该函数接受上述和以下所述的六个参数:


  • $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
  • $x1:此参数用于设置点1的x坐标。
  • $y1:此参数用于设置点1的y坐标。
  • $x2:此参数用于设置点2的x坐标。
  • $y2:此参数用于设置点2的y坐标。
  • $color:此参数包含填充的颜色标识符。使用imagecolorallocate()函数创建的颜色标识符。

返回值:如果成功,则此函数返回True;如果失败,则返回False。

以下示例程序旨在说明PHP中的imagefilledrectangle()函数:

程序1:

<?php 
  
// Create an image of given size 
$image = imagecreatetruecolor(500, 300); 
$green = imagecolorallocate($image, 0, 153, 0); 
  
// Draw the rectangle of green color 
imagefilledrectangle($image, 20, 20, 480, 280, $green); 
  
// Output image in png format 
header("Content-type: image/png"); 
imagepng($image); 
   
// Free memory 
imagedestroy($image); 
?>

输出:
imagerectanglefilled

程序2:

<?php 
  
// Create an image of given size 
$image = imagecreatetruecolor(500, 300); 
$white = imagecolorallocate($image, 255, 255, 255); 
  
// Draw the rectangle of white color 
imagefilledrectangle($image, 20, 20, 480, 280, $white); 
  
// Output image 
header("Content-type: image/png"); 
imagepng($image); 
   
// Free memory 
imagedestroy($image); 
?>

输出:
imagerectanglefilled

相关文章:

参考: http://php.net/manual/en/function.imagefilledrectangle.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagefilledrectangle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。