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


PHP imagecolorstotal()用法及代碼示例


imagecolorstotal()函數是PHP中的內置函數,可用於查找圖像調色板中的顏色數量。此函數返回調色板中的顏色數。

用法:

int imagecolorstotal ( $image )

參數:此函數接受單個參數$image,該參數是必需的。 imagecreatetruecolor()函數用於創建給定尺寸的圖像。此函數創建給定尺寸的空白圖像。


返回值:此函數返回給定圖像調色板中的顏色數,對於真彩色圖像,返回0。

以下示例程序旨在說明PHP中的imagecolorstotal()函數:

程序1:

<?php 
  
// store the image in variable. 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); 
  
echo 'Colors in image: ' . imagecolorstotal($image); 
  
// Free image 
imagedestroy($image); 
?>

輸出:

Colors in image: 0

程序2:

<?php 
  
// store the image in variable. 
$image = imagecreatefromgif( 
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif'); 
  
echo 'Colors in image: ' . imagecolorstotal($image); 
  
// Free image 
imagedestroy($image); 
?>

輸出:

Colors in image: 187

相關文章:

參考: http://php.net/manual/en/function.imagecolorstotal.php



相關用法


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