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


PHP GmagickPixel getcolorcount()用法及代码示例


GmagickPixel::getcolorcount()函数是PHP中的内置函数,用于获取与像素颜色关联的颜色计数。颜色计数是图像中与此GmagickPixel颜色相同的像素数。 getcolorcount()似乎仅适用于通过getimagehistogram()函数创建的GmagickPixel对象。

用法:

int GmagickPixel::getcolorcount( void )

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


返回值:此函数返回一个包含颜色计数的整数。

异常:该函数在错误时抛出GmagickPixelException。

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

使用的图片:

程序1:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the image histogram (image as array of gmagickpixels) 
$histogramElements = $gmagick->getImageHistogram();  
    
// Get the last index  
$lastIndex = count($histogramElements) - 1;  
    
// Get the last element from array which is   
// a gmagickPixel object  
$lastColor = $histogramElements[$lastIndex];  
    
// Get the Color count  
echo $lastColor->getcolorcount();  
?>

输出:

100064

程序2:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the image histogram (image as array of gmagickpixels) 
$histogramElements = $gmagick->getImageHistogram();  
  
// Get the first element from array which is   
// a gmagickPixel object  
$firstColor = $histogramElements[0];  
    
// Get the Color count  
echo $firstColor->getcolorcount();  
?>

输出:

1

程序3:

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the image histogram (image as array of gmagickpixels) 
$histogramElements = $gmagick->getImageHistogram();  
  
// Get the whole color stats  
echo "R G B Hue:Count<br>";  
foreach ($histogramElements as $pixel) {  
    $colors = $pixel->getcolor(true);  
    foreach ($colors as $color) {  
        print($color . " ");  
    }  
    print(":" . $pixel->getcolorcount() . "<br>");  
}  
?>

输出:

R G B Hue:Count
0 22 35:1
0 24 37:1
0 25 37:1
0 31 43:1
0 32 44:1
0 33 45:1
0 36 48:1
0 37 49:3
.
.
.

参考: https://www.php.net/manual/en/gmagickpixel.getcolorcount.php



相关用法


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