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


PHP ImagickPixel getColor()用法及代碼示例


ImagickPixel::getColor()函數是PHP中的內置函數,用於獲取ImagickPixel對象描述的顏色作為數組。如果顏色設置了不透明度通道,則將其作為列表中的第四個值提供。數組的鍵是r為(紅色),b為(藍色),g為(綠色)和a為(alpha /不透明度)。

用法:

array ImagickPixel::getColor( int $normalized )

參數:該函數接受單個參數$normalized,該參數指示是否對值進行標準化。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

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

程序1:

<?php 
  
// Create a new imagickPixel object 
$imagickPixel = new ImagickPixel();  
  
// Get the color 
$color = $imagickPixel->getColor(); 
  
// Print the color 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

Array       // which is the default value
(
    [r] => 0
    [g] => 0
    [b] => 0
    [a] => 1
)

程序2:

<?php 
  
// Create a new imagickPixel object 
// with a color 
$imagickPixel = new ImagickPixel('#3539bd');  
  
// Get the color 
$color = $imagickPixel->getColor(); 
  
// Print the color 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

Array
(
    [r] => 53
    [g] => 57
    [b] => 189
    [a] => 1
)

程序3:

<?php 
  
// Create a new imagickPixel object 
$imagickPixel = new ImagickPixel();  
  
// Set the color 
$imagickPixel->setColor('#38d9d3'); 
  
// Get the color 
$color = $imagickPixel->getColor(); 
  
// Print the color 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

Array
(
    [r] => 56
    [g] => 217
    [b] => 211
    [a] => 1
)

參考: https://www.php.net/manual/en/imagickpixel.getcolor.php



相關用法


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