Imagick::selectiveBlurImage

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

Imagick::selectiveBlurImageDescription

설명

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. 채널 상수 목록을 참고하십시오.

반환값

예제

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

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top