Imagick::getImageHistogram()函數是PHP中的內置函數,用於獲取圖像直方圖。
用法:
array Imagick::getImageHistogram( void )
參數:該函數不接受任何參數。
返回值:此函數返回包含圖像直方圖的ImagickPixel對象數組。
異常:該函數在錯誤時引發ImagickException。
以下示例程序旨在說明PHP中的Imagick::getImageHistogram()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the Histogram
$histogram = $imagick->getImageHistogram();
print("<pre>".print_r($histogram, true)."</pre>");
?>
輸出:
Returns an array with 2955 Imagick objects as members.
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/20190918234528/colorize1.png');
// Get the Histogram
$histogram = $imagick->getImageHistogram();
print("<pre>".print_r($histogram, true)."</pre>");
?>
輸出:
Returns an array with 1725 Imagick objects as members.
參考: https://www.php.net/manual/en/imagick.getimagehistogram.php
相關用法
- PHP Gmagick getimagehistogram()用法及代碼示例
- PHP Imagick identifyImage()用法及代碼示例
- PHP Imagick separateImageChannel()用法及代碼示例
- PHP Imagick sepiaToneImage()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick setColorspace()用法及代碼示例
- PHP Imagick getImageVirtualPixelMethod()用法及代碼示例
- PHP Imagick gammaImage()用法及代碼示例
- PHP Imagick getIteratorIndex()用法及代碼示例
- PHP Imagick setFirstIterator()用法及代碼示例
- PHP Imagick setOption()用法及代碼示例
- PHP Imagick getOption()用法及代碼示例
- PHP Imagick gaussianBlurImage()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Imagick getImageHistogram() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。