PHP | Gmagick getimagecolors()函数
Gmagick::getimagecolors()函数是PHP中的一个内置函数,用于获取图像中唯一颜色的数量。
句法:
int Gmagick::getimagecolors( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个整数值。
异常:此函数在错误时抛出 GmagickException。
使用的图像:捕获画布区域
下面给出的程序说明了PHP中的Gmagick::getimagecolors()函数:
程序 1:对于具有多种颜色的图像。
getimagecolors();
echo $color;
?>
输出:
2955
程序 2:对于单色图像。
getimagecolors();
echo $color;
?>
输出:
1
程序 3:用于绘图
setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('red');
// Set the font size
$draw->setfontsize(50);
// Annotate a text
$draw->annotate(30, 100, 'GeeksforGeeks');
// Use of drawimage function
$gmagick->drawImage($draw);
// Get the image colors
$colors = $gmagick->getimagecolors();
echo $colors;
?>
输出:
238
参考: https://www. PHP.net/manual/en/gmagick.getimagecolors。 PHP