Imagick::selectiveBlurImage

(No version information available, might only be in Git)

Imagick::selectiveBlurImageDescription

説明

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

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();
}

?>