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


PHP Gmagick getimagehistogram()用法及代碼示例


Gmagick::getimagehistogram()函數是PHP中的內置函數,用於獲取圖像直方圖。此函數以Gmagick像素數組的形式返回圖片中的所有像素。我們可以使用此函數逐像素分析任何圖片的顏色。

用法:

array Gmagick::getimagehistogram( void )

參數:此函數不接受任何參數。


返回值:此函數返回包含直方圖的數組值。

異常:此函數在錯誤時引發GmagickException。

下麵給出的程序說明了PHP中的Gmagick::getimagehistogram()函數:

程序1:

<?php 
  
// Create a new Gmagick object 
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the histogram 
$histogram = $gmagick->getimagehistogram(); 
print("<pre>".print_r($histogram, true)."</pre>"); 
?>

輸出:

Returns an array with 2955 Gmagick objects as members.

程序2:

<?php 
  
// Create a new Gmagick object 
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Get the histogram 
$histogram = $gmagick->getimagehistogram(); 
  
echo "Color of first five pixels are <br>"; 
for ($i = 0; $i < 5; $i++) { 
    // Get the color of ith pixel 
    $color = $histogram[$i]->getcolor(); 
    echo $color . "<br>"; 
} 
?>

輸出:

Color of first five pixels are
rgb(0, 5654, 8995)
rgb(0, 6168, 9509)
rgb(0, 6425, 9509)
rgb(0, 7967, 11051)
rgb(0, 8224, 11308)

參考: https://www.php.net/manual/en/gmagick.getimagehistogram.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick getimagehistogram() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。