📜  PHP |想象一下 getImageColors()函数

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

PHP |想象一下 getImageColors()函数

Imagick::getImageColors()函数是PHP中的一个内置函数,用于获取图像中唯一颜色的数量。

句法:

int Imagick::getImageColors( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个整数值,该值确定图像中唯一颜色的数量。

错误/异常:它会在错误时引发 ImagickException。

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

程序:

PHP
getImageColors();
 
// Display the unique color
print_r($size);
?>


输出:

2955

相关文章:

  • PHP | imagick的adaptiveThresholdImage()函数
  • PHP | imagick的transverseImage()函数

参考: http: PHP。 PHP