Unix and Linux Discussions Tagged with image |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
1,603 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
1,656 |
What is on Your Mind? |
|
|
|
3 |
3,852 |
Web Development |
|
|
|
2 |
1,050 |
Programming |
|
|
|
4 |
1,511 |
Solaris |
|
|
|
3 |
4,104 |
Solaris |
|
|
|
0 |
5,175 |
FAQ Submission Queue |
|
|
|
3 |
1,402 |
Shell Programming and Scripting |
|
|
|
4 |
7,090 |
Programming |
|
|
|
5 |
3,416 |
Programming |
|
|
|
8 |
14,620 |
Shell Programming and Scripting |
|
|
|
3 |
2,094 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
7,667 |
Shell Programming and Scripting |
|
|
|
3 |
4,968 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
3,587 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
737 |
Software Releases - RSS News |
|
|
|
0 |
581 |
Software Releases - RSS News |
|
|
|
0 |
956 |
Software Releases - RSS News |
|
|
|
0 |
1,713 |
Software Releases - RSS News |
|
|
|
0 |
1,008 |
Software Releases - RSS News |
|
|
|
0 |
1,274 |
UNIX and Linux RSS News |
|
|
|
1 |
2,145 |
Shell Programming and Scripting |
|
|
|
0 |
652 |
Software Releases - RSS News |
|
|
|
0 |
703 |
Software Releases - RSS News |
|
|
|
3 |
5,761 |
AIX |
|
|
|
0 |
1,885 |
UNIX and Linux RSS News |
|
|
|
0 |
790 |
Software Releases - RSS News |
|
|
|
0 |
591 |
Software Releases - RSS News |
|
|
|
0 |
548 |
Software Releases - RSS News |
|
|
|
0 |
967 |
Software Releases - RSS News |
|
|
|
0 |
664 |
Software Releases - RSS News |
|
|
|
2 |
3,452 |
Linux |
|
|
|
0 |
1,862 |
UNIX and Linux RSS News |
|
|
|
0 |
1,006 |
Software Releases - RSS News |
|
|
|
0 |
676 |
Software Releases - RSS News |
|
|
|
0 |
753 |
Software Releases - RSS News |
|
|
|
0 |
620 |
Software Releases - RSS News |
|
|
|
0 |
1,218 |
UNIX and Linux RSS News |
|
|
|
0 |
557 |
Software Releases - RSS News |
|
|
|
0 |
1,070 |
Software Releases - RSS News |
IMAGECOLORSTOTAL(3) 1 IMAGECOLORSTOTAL(3)
imagecolorstotal - Find out the number of colors in an image's palette
SYNOPSIS
int imagecolorstotal (resource $image)
DESCRIPTION
Returns the number of colors in an image palette.
PARAMETERS
o $image
- An image resource, returned by one of the image creation functions, such as imagecreatefromgif(3).
RETURN VALUES
Returns the number of colors in the specified image's palette or 0 for truecolor images.
EXAMPLES
Example #1
Getting total number of colors in an image using imagecolorstotal(3)
<?php
// Create image instance
$im = imagecreatefromgif('php.gif');
echo 'Total colors in image: ' . imagecolorstotal($im);
// Free image
imagedestroy($im);
?>
The above example will output something similar to:
Total colors in image: 128
SEE ALSO
imagecolorat(3), imagecolorsforindex(3), imageistruecolor(3).
PHP Documentation Group IMAGECOLORSTOTAL(3)