Imagick::quantizeImage
(PECL imagick 2, PECL imagick 3)
Imagick::quantizeImage — 参照画像内の色を解析する
説明
パラメータ
numberColors
-
colorspace
-
treedepth
-
dither
-
measureError
-
戻り値
成功した場合に true
を返します。
エラー / 例外
エラー時に ImagickException をスローします。
例
例1 Imagick::quantizeImage()
<?php
function 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();
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.