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


PHP imagecolorresolve()用法及代碼示例


imagecolorresolve()函數是PHP中的內置函數,用於獲取指定顏色或其最接近的替代顏色的索引。此函數返回所請求顏色的顏色索引值,可以是精確匹配的顏色,也可以是最接近的可能替代顏色。

用法:

int imagecolorresolve ( $image, $red, $green, $blue )

參數:該函數接受上述和以下所述的四個參數:


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $red:此參數用於設置紅色分量的值。
  • $green:此參數用於設置綠色分量的值。
  • $blue:此參數用於設置藍色分量的值。

返回值:此函數返回顏色索引。

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

程序1:

<?php 
   
// Load an image 
$image = imagecreatefromgif( 
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif'); 
   
// Get closest colors from the image 
$colors = array(); 
$colors[] = imagecolorresolve($image, 167, 75, 55); 
$colors[] = imagecolorresolve($image, 150, 25, 250); 
$colors[] = imagecolorresolve($image, 161, 234, 135); 
$colors[] = imagecolorresolve($image, 143, 255, 254); 
   
// Output 
print_r($colors); 
   
imagedestroy($image); 
?>

輸出:

Array ( 
    [0] => 187 
    [1] => 188 
    [2] => 189 
    [3] => 190 
) 

程序2:

<?php 
   
// Load an image 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png'); 
   
// Get closest colors from the image 
$colors = array( 
    imagecolorresolve($image, 156, 0, 255), 
    imagecolorresolve($image, 0, 255, 200), 
    imagecolorresolve($image, 16, 134, 35), 
    imagecolorresolve($image, 143, 255, 254) 
); 
   
// Output 
print_r($colors); 
   
imagedestroy($image); 
?>

輸出:

Array ( 
    [0] => 10223871 
    [1] => 65480 
    [2] => 1082915 
    [3] => 9437182 
) 

相關文章:

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



相關用法


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