模糊度在 0 到 65535 的范围内工作良好。
我建议您尝试在色谱图像上移动模糊度。
1/ 获取色谱图(Google Image 有很多)
2/ 尝试以下代码
<?php
function fuzzTest($source, $target, $fuzz) {
$im = new Imagick($source);
$im->resizeImage(320, 240, Imagick::FILTER_LANCZOS, 1, true);
$im->paintTransparentImage($im->getImagePixelColor(0, 0), 0, $fuzz);
$im->setImageFormat('png');
$im->writeImage($target);
$im->destroy();
return true;
}
for ($i = 0; ($i <= 10); $i++) {
fuzzTest('spectrum.png', "test_{$i}.png", (6553.5 * $i));
echo '<img src="test_' . $i . '.png" /> ';
}
?>