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


PHP imagecolorclosestalpha()用法及代碼示例


imagecolorclosestalpha()函數是PHP中的內置函數,用於獲取給定圖像中帶有alpha值的壁櫥顏色索引。此函數返回最接近指定RGB值和alpha級別的圖像調色板中顏色的索引。 Alpha值表示圖像的透明度。

用法:

int imagecolorclosestalpha ( $image, $red, $green, $blue, $alpha )

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


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $red:此參數用於設置紅色分量的值。
  • $green:此參數用於設置綠色分量的值。
  • $blue:此參數用於設置藍色分量的值。
  • $alpha:此參數用於設置圖像的透明度。 $alpha的值在0到127之間,其中0表示完全不透明,而127表示完全透明。

返回值:此函數返回調色板中最接近的顏色的索引。

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

程序1:

<?php 
  
// Convert an image into a palette-based image 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png'); 
  
imagetruecolortopalette($image, false, 255); 
  
// Find closest color in image 
$output = imagecolorclosestalpha($image, 155, 40, 200, 50); 
$output = imagecolorsforindex($image, $output); 
$output = "({$output['red']}, {$output['green']}, 
          {$output['blue']}, {$output['alpha']})"; 
  
echo "Closest match: " . $output . "\n"; 
  
imagedestroy($image); 
?>

輸出:

Closest match: (100, 58, 108, 0)

程序2:

<?php 
  
// Convert an image into a palette-based image 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/col1.png'); 
  
imagetruecolortopalette($image, false, 255); 
  
// Search the given rgb color. 
$color = array( 
    array(155, 40, 200, 50), 
    array(235, 205, 188, 127), 
    array(135, 00, 132, 0), 
); 
  
// Loop to return the closest color match. 
foreach($color as $id => $rgb) 
{ 
    $output = imagecolorclosestalpha($image, $rgb[0], 
                          $rgb[1], $rgb[2], $rgb[3]); 
                            
    $output = imagecolorsforindex($image, $output); 
      
    $output = "({$output['red']}, {$output['green']},  
              {$output['blue']}, {$output['alpha']})"; 
  
    echo "Given color: ($rgb[0], $rgb[1], $rgb[2], $rgb[3]) 
                 => Closest match: $output <br>"; 
} 
  
imagedestroy($image); 
?>

輸出:

Given color: (155, 40, 200, 50) => Closest match: (100, 58, 108, 0) 
Given color: (235, 205, 188, 127) => Closest match: (100, 58, 108, 0) 
Given color: (135, 0, 132, 0) => Closest match: (100, 58, 108, 0) 

相關文章:

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



相關用法


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