Imagick::quantizeImage
(PECL imagick 2, PECL imagick 3)
Imagick::quantizeImage — 参照画像内の色を解析する
説明
public Imagick::quantizeImage
( int $numberColors
, int $colorspace
, int $treedepth
, bool $dither
, bool $measureError
) : bool
パラメータ
numberColors
colorspace
treedepth
dither
measureError
返り値
成功した場合に true
を返します。
エラー / 例外
エラー時に ImagickException をスローします。
例
例1 Imagick::quantizeImage()
<?phpfunction quantizeImage($imagePath, $numberColors, $colorSpace, $treeDepth, $dither) { $imagick = new \Imagick(realpath($imagePath)); $imagick->quantizeImage($numberColors, $colorSpace, $treeDepth, $dither, false); $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob();}?>