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
相關用法
- CSS url()用法及代碼示例
- p5.js pow()用法及代碼示例
- PHP each()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP next()用法及代碼示例
- PHP pow( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- CSS var()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js value()用法及代碼示例
- p5.js hex()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | imagefilltoborder() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。