Imagick::adaptiveBlurImage()函數是PHP中的內置函數,用於在給定圖像中添加自適應模糊濾鏡。自適應模糊的強度在圖像邊顯著降低,而標準模糊在整個圖像上是均勻的。此效果使圖像不清楚或不太清晰。
用法:
bool adaptiveBlurImage ( $radius, $sigma, $channel )
參數:此函數接受上述和以下所述的三個參數:
- $radius:此參數用於設置高斯半徑,以像素為單位。它不計算中心像素。如果半徑值為零,則表示將自動選擇半徑。
- $sigma:此參數用於查找高斯的標準偏差(以像素為單位)。
- $channel:此參數提供對通道模式有效的通道常數。使用按位運算符可以組合多個通道。 Imagick函數中的默認通道為Imagick::CHANNEL_DEFAULT。
頻道列表的一些顏色常數如下:- imagick::COLOR_BLACK(整數)
- imagick::COLOR_BLUE(整數)
- imagick::COLOR_CYAN(整數)
- imagick::COLOR_GREEN(整數)
- imagick::COLOR_RED(整數)
- imagick::COLOR_YELLOW(整數)
- imagick::COLOR_MAGENTA(整數)
- imagick::COLOR_OPACITY(整數)
- imagick::COLOR_ALPHA(整數)
- imagick::COLOR_FUZZ(整數)
返回值:成功時此函數返回TRUE。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::adaptiveBlurImage()函數:
原始圖片:
程序:
<?php
// require_once('path/to/vendor/autoload.php');
header('Content-type: image/png');
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
$image->adaptiveBlurImage(20, 5);
echo $image;
?>
輸出:
參考: http://php.net/manual/en/imagick.adaptiveblurimage.php
相關用法
- PHP Imagick setImageBorderColor()用法及代碼示例
- PHP Imagick getImageClipMask()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick getImageChannelMean()用法及代碼示例
- PHP Imagick getImageChannelExtrema()用法及代碼示例
- PHP Imagick setImageClipMask()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick haldClutImage()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageCompose()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick adaptiveBlurImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。