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
相關用法
- PHP ImagickPixel getColorCount()用法及代碼示例
- PHP GmagickPixel setcolorvalue()用法及代碼示例
- PHP GmagickPixel getcolor()用法及代碼示例
- PHP GmagickPixel __construct()用法及代碼示例
- PHP GmagickPixel getcolorvalue()用法及代碼示例
- PHP GmagickPixel setcolor()用法及代碼示例
- p5.js second()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP next()用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- p5.js red()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | GmagickPixel getcolorcount() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。