imagecolorstotal() function in PHP


The imagecolorstotal() function gets the count of colors in an image's palette

Syntax

imagecolorstotal (img)

Parameters

  • img: Image created with imagecreatetruecolor().

Return

The imagecolorstotal() function returns the number of colors in an image palette.

Example

The following is an example

 Live Demo

<?php
   $img = imagecreatefromgif('https://www.tutorialspoint.com/images/html.gif');
   echo 'Number of Colors = ' . imagecolorstotal($img);
   imagedestroy($img);
?>

Output

The following is the output:

Number of Colors = 128

Updated on: 31-Dec-2019

36 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements