Imagick::unsharpMaskImage

(PECL imagick 2, PECL imagick 3)

Imagick::unsharpMaskImage锐化图像

描述

public Imagick::unsharpMaskImage(
    float $radius,
    float $sigma,
    float $amount,
    float $threshold,
    int $channel = Imagick::CHANNEL_DEFAULT
): bool

锐化图像。我们将图像与给定半径和标准偏差 (sigma) 的高斯算子卷积。为了获得合理的结果,半径应大于 sigma。使用半径为 0 并使用 Imagick::UnsharpMaskImage() 为您选择合适的半径。

参数

radius

sigma

amount

threshold

channel

返回值

成功时返回 true

错误/异常

在错误时抛出 ImagickException。

示例

示例 #1 Imagick::unsharpMaskImage()

<?php
function unsharpMaskImage($imagePath, $radius, $sigma, $amount, $unsharpThreshold) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->unsharpMaskImage($radius, $sigma, $amount, $unsharpThreshold);
header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

?>

添加笔记

用户贡献的笔记 1 笔记

2
匿名
15 年前
准备用于网络的照片

<?php
$im
= new Imagick($SrcFile);

$im->resizeImage ( $Width, $Height , Imagick::FILTER_QUADRATIC , 1 );

$im->normalizeImage();
$im->unsharpMaskImage(0 , 0.5 , 1 , 0.05);

$im->setImageFormat( "jpg" );
$im->setCompressionQuality(75);

$im->writeImage( $OutFile );

$im->removeImage();
?>
To Top