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


PHP imagecolorexact()用法及代碼示例


imagecolorexact()函數是PHP中的內置函數,用於獲取圖像調色板中指定顏色的索引。在創建的圖像文件中,僅解決圖像中使用的顏色。僅調色板中存在的顏色無法解析。

用法:

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

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


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

返回值:如果成功,此函數將返回調色板中指定顏色的索引;如果顏色不存在,則返回-1。

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

程序1:

<?php 
  
// Set the image into variable 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png'); 
  
// Create an array containing colors and image 
$colors = Array(); 
$colors[] = imagecolorexact($image, 10, 15, 20); 
$colors[] = imagecolorexact($image, 30, 180, 70); 
$colors[] = imagecolorexact($image, 12, 55, 25); 
$colors[] = imagecolorexact($image, 154, 25, 52); 
  
print_r($colors); 
  
// Free from memory 
imagedestroy($image); 
  
?>

輸出:

Array ( 
    [0] => 659220 
    [1] => 2012230 
    [2] => 800537 
    [3] => 10098996 
)

程序2:

<?php 
  
// Set the image into variable 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png'); 
   
// Create an array containing colors and image 
$colors   = Array( 
    $colors[] = imagecolorexact($image, 0, 153, 0), 
    $colors[] = imagecolorexact($image, 0, 0, 0), 
    $colors[] = imagecolorexact($image, 255, 255, 255), 
    $colors[] = imagecolorexact($image, 100, 100, 52) 
); 
   
print_r($colors); 
   
// Free from memory 
imagedestroy($image); 
  
?>

輸出:

Array ( 
    [0] => 39168 
    [1] => 0 
    [2] => 16777215 
    [3] => 6579252 
)

相關文章:

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



相關用法


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