Imagick::selectiveBlurImage
(PECL imagick 3 >= 3.3.0)
Imagick::selectiveBlurImage — Description
説明
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()
<?phpfunction 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();}?>