(PHP 4, PHP 5, PHP 7, PHP 8)
imagecolorstotal — 找出图像调色板中的颜色数量
返回指定图像调色板中的颜色数量,或者对于真彩色图像返回 0。
示例 #1 使用 imagecolorstotal() 获取图像中的总颜色数
<?php
// 创建图像实例
$im = imagecreatefromgif('php.gif');
echo '图像中的总颜色数:' . imagecolorstotal($im);
// 释放图像
imagedestroy($im);
?>
上面的示例将输出类似于以下内容
Total colors in image: 128