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


PHP imagefilltoborder()用法及代码示例


imagefilltoborder()函数是PHP中的内置函数,用于执行特定颜色的泛洪填充并添加带有边框颜色的边框。

用法:

bool imagefilltoborder( resource $image, int $x, int $y, int $border, int $color )

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


  • $image:它指定要处理的图像。
  • $x:它指定开始的x坐标。
  • $y:它指定开始的y坐标。
  • $border:它指定边框颜色。
  • $color:它指定填充颜色。

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

异常:该函数在出错时引发Exception。

下面给出的程序说明了PHP中的imagefilltoborder()函数:

程序1(向图像添加填充色):

<?php 
  
// Load the png image 
$im = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Create colors 
$borderColor = imagecolorallocate($im, 0, 200, 0); 
$fillColor = imagecolorallocate($im, 0, 0, 200); 
  
// Add fill to border 
imagefilltoborder($im, 0, 0, $borderColor, $fillColor); 
  
// Show the output 
header('Content-type:image/png'); 
imagepng($im); 
?>

输出:

程序2(向图形添加填充颜色):

<?php 
  
// Create the image handle, set the background to white 
$im = imagecreatetruecolor(800, 250); 
imagefilledrectangle($im, 0, 0, 800, 
        250, imagecolorallocate($im, 0, 255, 0)); 
  
// Draw an ellipse to fill with a black border 
imageellipse($im, 250, 150, 250, 150, 
        imagecolorallocate($im, 0, 0, 0)); 
  
// Fill the selection 
imagefilltoborder($im, 50, 50, imagecolorallocate($im, 
        0, 0, 0), imagecolorallocate($im, 255, 0, 0)); 
  
// Output the image 
header('Content-type:image/png'); 
imagepng($im); 
?>

输出:

参考: https://www.php.net/manual/en/function.imagefilltoborder.php



相关用法


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