Friday, October 10, 2025
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

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7100 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS