當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。