Imagick
PHP Manual

Imagick::selectiveBlurImage

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

Imagick::selectiveBlurImage — Description

説明

public void Imagick::selectiveBlurImage ( float $radius , float $sigma , float $threshold , int $CHANNEL )

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 です。 チャネル定数 の一覧を参照ください。

返り値

例

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

?>


Imagick
PHP Manual