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


PHP imagefill()用法及代码示例


imagefill()函数是PHP中的内置函数,用于用给定的颜色填充图像。此函数以给定的坐标(图像的左上角为0、0)开始执行填充。

用法:

bool imagefill( $image, $x, $y, $color )

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


  • $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
  • $x:该参数用于设置起点的x坐标。
  • $y:该参数用于设置起点的y坐标。
  • $color:它设置图像的颜色。由imagecolorallocate()函数创建的颜色标识符。

返回值:成功时此函数返回True,失败时返回False。

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

程序1:

<?php 
  
// Create an image of given size 
$image = imagecreatetruecolor(500, 400); 
  
// Sets background to green 
$green = imagecolorallocate($image, 0, 153, 0); 
imagefill($image, 0, 0, $green); 
  
header('Content-type: image/png'); 
imagepng($image); 
imagedestroy($image); 
?>

输出:
image filled

程序2:

<?php 
    
// It create the size of image or blank image. 
$image = imagecreatetruecolor(500, 300); 
    
// Set the background color of image. 
$bg = imagecolorallocate($image, 205, 220, 200); 
    
// Fill background with above selected color. 
imagefill($image, 0, 0, $bg); 
   
// Set the color of an ellipse. 
$col_ellipse = imagecolorallocate($image, 0, 102, 0); 
    
// Function to draw the filled ellipse. 
imagefilledellipse($image, 250, 150, 400, 250, $col_ellipse); 
    
// Output of the image. 
header("Content-type: image/png"); 
imagepng($image); 
    
?>

输出:
image filled

相关文章:

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



相关用法


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