Imagick::quantizeImage

(PECL imagick 2.0.0)

Imagick::quantizeImageAnalyzes the colors within a reference image

Опис

bool Imagick::quantizeImage ( int $numberColors , int $colorspace , int $treedepth , bool $dither , bool $measureError )

Параметри

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$ditherfalse);
    
$imagick->setImageFormat('png');
    
header("Content-Type: image/png");
    echo 
$imagick->getImageBlob();
}

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top