PHP | Imagick quantizeImages() Function

The Imagick::quantizeImages() function is an inbuilt function in PHP which is used to analyze the colors within a sequence of images. This is usually helpful with gif animations.
Syntax:
bool Imagick::quantizeImages(int $numberColors, int $colorspace, int $treedepth, bool $dither, bool $measureError)
Parameters: This function accepts five parameters as mentioned above and described below:
- $numberColors: It specifies the number of colors.
- $colorspace: It specifies the colorspace.
- $treedepth: It specifies the depth of tree.
- $dither: It specifies whether to enable dither or not.
- $measureError: It specifies whether to enable error measurement or not.
Return Value: This function returns TRUE on success.
Exceptions: This function throws ImagickException on error.
Below given programs illustrate the Imagick::quantizeImages() function in PHP:
Program 1:
<?php // Create a new imagick object $imagick = new Imagick( // Quantize the Image $imagick->quantizeImages(2, 50, 256, true, false); // Display the image $imagick->setImageFormat('gif'); header("Content-Type: image/gif"); echo $imagick->getImagesBlob(); ?> |
Output:
Program 2:
<?php // Create a new imagick object $imagick = new Imagick( // Quantize the Image $imagick->quantizeImages(2, 80, 256, true, false); // Display the image $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImagesBlob(); ?> |
Output:
Reference: https://www.php.net/manual/en/imagick.quantizeimages.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!




