Imagick::selectiveBlurImage

Selectively blur an image within a contrast threshold

説明

public bool Imagick::selectiveBlurImage(
    float $radius,
    float $sigma,
    float $threshold,
    int $channel = Imagick::CHANNEL_DEFAULT
)

Selectively blur an image within a contrast threshold. It is similar to the unsharpen mask that sharpens everything with contrast above a certain threshold.

パラメータ

radius

sigma

threshold

channel

そのモードで有効なチャネル定数を指定します。 複数のチャネルを適用するには、チャネル定数 をビット演算子で組み合わせます。デフォルトは Imagick::CHANNEL_DEFAULT です。 チャネル定数 の一覧を参照ください。

戻り値

成功した場合に true を返します。

例1 Imagick::selectiveBlurImage

<?php
function selectiveBlurImage($imagePath$radius$sigma$threshold$channel) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->selectiveBlurImage($radius$sigma$threshold$channel);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>