📜  PHP | imagecolor()函数

📅  最后修改于: 2022-05-13 01:56:50.590000             🧑  作者: Mango

PHP | imagecolor()函数

imagecolorstotal()函数是PHP中的一个内置函数,用于查找图像调色板中的颜色数量。此函数返回图像调色板中的颜色数。

句法:

int imagecolorstotal ( $image )

参数:此函数接受一个强制的参数$image 。 imagecreatetruecolor()函数用于创建给定尺寸的图像。此函数创建给定大小的空白图像。

返回值:此函数返回给定图像调色板中的颜色数,对于真彩色图像返回 0。

下面的程序说明了PHP中的imagecolorstotal()函数:

方案一:


输出:

Colors in image: 0

方案二:


输出:

Colors in image: 187

相关文章:

  • PHP | imagecolorclosestalpha()函数
  • PHP | imagecolorat()函数
  • PHP | imagecolorclosest()函数

参考: 函数 : PHP 。 PHP