Imagick::linearStretchImage

(PECL imagick 2, PECL imagick 3)

Imagick::linearStretchImage以饱和度拉伸图像强度

描述

public Imagick::linearStretchImage(float $blackPoint, float $whitePoint): bool

以饱和度拉伸图像强度。

参数

blackPoint

图像黑点

whitePoint

图像白点

返回值

成功时返回 true

示例

示例 #1 Imagick::linearStretchImage()

<?php
function linearStretchImage($imagePath, $blackThreshold, $whiteThreshold) {
$imagick = new \Imagick(realpath($imagePath));
$pixels = $imagick->getImageWidth() * $imagick->getImageHeight();
$imagick->linearStretchImage($blackThreshold * $pixels, $whiteThreshold * $pixels);

header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

?>

添加注释

用户贡献的注释 1 个注释

1
SkepticaLee
10 年前
这里的“黑”和“白”点分别是像素从最暗和最亮端开始的像素计数。要将最暗的 90% 的像素变黑,并将最亮的 5% 的像素变白,请使用以下方法

<?php
$im
= new Imagick ("some image.png");
list (
$width, $height) = array_values ($im->getImageGeometry ());
$px = $width * $height;
$im->modulateImage (100, 0, 100);
$im->linearStretchImage ($px * 0.9, $px * 0.05);
$im->writeImage ("temp.jpg");
?>
To Top