PHP | Imagick quantizeImages()函数
Imagick::quantizeImages()函数是PHP的一个内置函数,用于分析图像序列中的颜色。这通常对 gif 动画很有帮助。
句法:
bool Imagick::quantizeImages(int $numberColors, int $colorspace,
int $treedepth, bool $dither, bool $measureError)
参数:该函数接受上面提到和下面描述的五个参数:
- $numberColors:它指定颜色的数量。
- $colorspace:指定颜色空间。
- $treedepth:指定树的深度。
- $dither:指定是否开启抖动。
- $measureError:指定是否开启误差测量。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP的Imagick::quantizeImages()函数:
方案一:
quantizeImages(2, 50, 256, true, false);
// Display the image
$imagick->setImageFormat('gif');
header("Content-Type: image/gif");
echo $imagick->getImagesBlob();
?>
输出:
方案二:
quantizeImages(2, 80, 256, true, false);
// Display the image
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImagesBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.quantizeimages。 PHP