我们如何使用php对png图像应用阈值效果

时间:2019-01-30 11:33:40

标签: imagemagick effect threshold

我有一些灰度png图像或彩色图像。我想使用php语言应用阈值效果。 我仍在寻找解决方案。

1 个答案:

答案 0 :(得分:0)

<?php
function thresholdimage($imagePath, $threshold, $channel) {
    $imagick = new \Imagick(realpath($imagePath));
    $imagick->thresholdimage($threshold * \Imagick::getQuantum(), $channel);
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}

?>