当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Gmagick getimagecolors()用法及代码示例


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

用法:

int Gmagick::getimagecolors( void )

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


返回值:该函数返回一个整数值。

异常:此函数在错误时引发GmagickException。

使用的图片:捕获画布区域

下面给出的程序说明了PHP中的Gmagick::getimagecolors()函数:

程序1:对于具有多种颜色的图像。

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the border color 
$color = $gmagick->getimagecolors(); 
echo $color; 
?>

输出:

2955

程序2:对于单色图像。

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('singlecolor.png'); 
  
// Get the border color 
$color = $gmagick->getimagecolors(); 
echo $color; 
?>

输出:

1

程序3:对于图纸

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Create a GmagickDraw object 
$draw = new GmagickDraw(); 
  
// Set the color 
$draw->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Gmagick getimagecolors() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。