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


PHP GmagickPixel getcolor()用法及代碼示例


GmagickPixel::getcolor()函數是PHP中的一個內置函數,用於獲取GmagickPixel對象描述的顏色(字符串或數組)。如果顏色設置了不透明度通道,則將其作為列表中的第四個值提供。

用法:

mixed GmagickPixel::getcolor( bool $as_array,
                  bool $normalized_array )

參數:該函數接受上述和以下描述的兩個參數:


  • $as_array(可選):它指定是否獲取值作為數組。其默認值為FALSE。
  • $normalized_array(可選):它指定是否獲取標準化數組。其默認值為FALSE。

返回值:此函數返回字符串或顏色值數組。

異常:該函數在錯誤時拋出GmagickPixelException。

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

程序1(將顏色作為字符串獲取):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

rgb(52428, 45232, 25186)

程序2(通過歸一化獲取顏色為數組):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(true, true); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

Array
(
    [r] => 0.8
    [g] => 0.69019607843137
    [b] => 0.3843137254902
)

程序3(在不進行標準化的情況下獲取顏色為數組):

<?php 
  
// Create a new GmagickPixel object 
// using __construct 
$gmagickPixel = new GmagickPixel('#ccb062'); 
  
// Get the color 
$color = $gmagickPixel->getcolor(true, false); 
print("<pre>".print_r($color, true)."</pre>"); 
?>

輸出:

Array
(
    [r] => 204
    [g] => 176
    [b] => 98
)

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



相關用法


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