function quantizeImage($image_path, $numberColors, $colorSpace, $treeDepth, $dither) { $imagick = new \Imagick(realpath($image_path)); $imagick->quantizeImage($numberColors, $colorSpace, $treeDepth, $dither, false); $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); }