我正在尝试使用 Imagick 实现此代码片段(“晕影”效果),但处理速度非常慢:
set_time_limit(90);
$iterator = $imagick->getPixelIterator();
$width = $imagick->getImageWidth();
$height = $imagick->getImageHeight();
foreach($iterator as $y => $pixels){
foreach($pixels as $x => $pixel){
$l = 1 - 0.7 * (1 - pow((sin(M_PI / $width * $x) * sin(M_PI / $height * $y)), 0.4));
extract($pixel->getColor());
$pixel->setColor(sprintf('rgb(%d,%d,%d)', $r * $l, $g * $l, $b * $l));
}
$iterator->syncIterator();
}
原来的:
结果:
对于 1600x1200 的图像,处理图像大约需要 35 秒。有一个更好的方法吗?