Imagick::colorFloodfillImage()函數是PHP中的內置函數,用於更改與目標匹配的任何像素的顏色值。
用法:
bool Imagick::colorFloodfillImage( $color, $fuzz, $bordercolor, $x, $y )
參數:該函數接受上述和以下所述的五個參數:
- color:此參數保存ImagickPixel對象,其中包含以字符串格式填充的顏色名稱。
- fuzz:此參數保存模糊程度。
- bordercolor:此參數保存ImagickPixel對象,其中包含以字符串格式填充的邊框顏色名稱。
- x:它保持了填充的x軸開始位置。
- y:它保持了填充的y軸開始位置。
返回值:成功時此函數返回TRUE。
錯誤/異常:此函數在錯誤時引發ImagickException。
程序:
<?php
// Create an Imagick object
$image = new Imagick(
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-6.png");
// Use colorFloodfillImage() function to change
// the color value of any pixel
$image->colorFloodfillImage( "red", 0.2, "white", 1, 1);
header("Content-Type: image/jpg");
// Display the output
echo $image->getImageBlob();
?>
輸出:
參考: https://www.php.net/manual/en/imagick.colorfloodfillimage.php
相關用法
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自piyush25pv大神的英文原創作品 PHP | Imagick colorFloodfillImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。