La función Imagick::quantizeImages() es una función incorporada en PHP que se usa para analizar los colores dentro de una secuencia de imágenes. Esto suele ser útil con animaciones gif.
Sintaxis:
bool Imagick::quantizeImages(int $numberColors, int $colorspace, int $treedepth, bool $dither, bool $measureError)
Parámetros: esta función acepta cinco parámetros, como se mencionó anteriormente y se describe a continuación:
- $numberColors: Especifica el número de colores.
- $colorspace: Especifica el espacio de color.
- $tree depth: Especifica la profundidad del árbol.
- $dither: especifica si habilitar o no el dither.
- $measureError: Especifica si habilitar o no la medición de errores.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función Imagick::quantizeImages() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20191117145951/g4gnaimation1.gif'); // Quantize the Image $imagick->quantizeImages(2, 50, 256, true, false); // Display the image $imagick->setImageFormat('gif'); header("Content-Type: image/gif"); echo $imagick->getImagesBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/20191117194549/g4ganimatedcolor.gif'); // Quantize the Image $imagick->quantizeImages(2, 80, 256, true, false); // Display the image $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImagesBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagick.quantizeimages.php