Saturday, November 22, 2025
HomeLanguagesPHP | Imagick uniqueImageColors() Function

PHP | Imagick uniqueImageColors() Function

The Imagick::uniqueImageColors() function is an inbuilt function in PHP which is used to discards all but one of any pixel color. This function is available in version 6.2.9 or newer.

Syntax:

bool Imagick::uniqueImageColors( void )

Parameters: This function does not accepts any parameters.

Return Value: This function returns True on success.

Below program illustrates the Imagick::uniqueImageColors() function in PHP:

Program:




<?php
  
// Create an Imagick object
$imagick = new Imagick(
  
// Reduce the image to 256 colours nicely.
$imagick->quantizeImage(256, \Imagick::COLORSPACE_YIQ, 0, false, false);
  
// Use uniqueImageColors function to distinguish the color of image
$imagick->uniqueImageColors();
  
// Scale the output image
$imagick->scaleimage($imagick->getImageWidth() * 10, 
              $imagick->getImageHeight() * 50);
header("Content-Type: image/png");
  
// Display the output image
echo $imagick->getImageBlob();
?>


Output:
unique image colors

Related Articles:

Reference: http://php.net/manual/en/imagick.uniqueimagecolors.php

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS