Wednesday, May 27, 2026
HomeLanguagesPHP | imagecolorstotal() Function

PHP | imagecolorstotal() Function

The imagecolorstotal() function is an inbuilt function in PHP which is used to find the number of colors in an image’s palette. This function returns the number of colors in an image palette.

Syntax:

int imagecolorstotal ( $image )

Parameters: This function accepts a single parameter $image which is mandatory. The imagecreatetruecolor() function is used to create an image in a given size. This function creates blank image of given size.

Return Value: This function returns the number of colors in the given image palette or 0 for truecolor images.

Below programs illustrate the imagecolorstotal() function in PHP:

Program 1:




<?php
  
// store the image in variable.
$image = imagecreatefrompng(
  
echo 'Colors in image: ' . imagecolorstotal($image);
  
// Free image
imagedestroy($image);
?>


Output:

Colors in image: 0

Program 2:




<?php
  
// store the image in variable.
$image = imagecreatefromgif(
  
echo 'Colors in image: ' . imagecolorstotal($image);
  
// Free image
imagedestroy($image);
?>


Output:

Colors in image: 187

Related Articles:

Reference: http://php.net/manual/en/function.imagecolorstotal.php

RELATED ARTICLES

5 COMMENTS

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS