(PECL imagick 3 >= 3.3.0)
Imagick::selectiveBlurImage — Selectively blur an image within a contrast threshold
$radius
,$sigma
,$threshold
,$channel
= Imagick::CHANNEL_DEFAULTSelectively 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();
}
?>