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


PHP ImagickPixel getColorCount()用法及代码示例


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

用法:

int ImagickPixel::getColorCount( void ):int

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


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

异常:该函数在错误时引发ImagickException。

下面给出的程序说明了PHP中的ImagickPixel::getColorCount()函数:程序1:

<?php 
// Create a new imagick object 
$imagick = new Imagick( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the image histogram 
$histogramElements = $imagick->getImageHistogram(); 
  
// Get the last index 
$lastIndex = count($histogramElements) - 1; 
  
// Get the element from array which is  
// a ImagickPixel object 
$lastColor = $histogramElements[$lastIndex]; 
  
// Get the Color count 
echo $lastColor->getColorCount(); 
?>

输出:

18

程序2:

<?php 
// Create a new imagick object 
$imagick = new Imagick( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the image histogram 
$histogramElements = $imagick->getImageHistogram(); 
  
// Get the element from array which is  
// a ImagickPixel object 
$lastColor = $histogramElements[0]; 
  
// Get the Color count 
echo $lastColor->getColorCount(); 
?>

输出:

1

程序3:

<?php 
// Create a new imagick object 
$imagick = new Imagick( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the image histogram 
$histogramElements = $imagick->getImageHistogram(); 
  
// Get the element from array which is  
// a ImagickPixel object 
$firstColor = $histogramElements[0]; 
  
// Set the Color count 
$firstColor->setColorCount(20); 
  
// Get the Color count 
echo $firstColor->getColorCount(); 
?>

输出:

20

程序3:

<?php 
// Create a new imagick object 
$imagick = new Imagick( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the image histogram 
$histogramElements = $imagick->getImageHistogram(); 
  
// Get the whole color stats 
echo "R G B Hue:Count<br>"; 
foreach ($histogramElements as $pixel) { 
    $colors = $pixel->getColor(); 
    foreach ($colors as $color) { 
        print($color . " "); 
    } 
    print(":" . $pixel->getColorCount() . "<br>"); 
} 
?>

输出:

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

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



相关用法


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