ImagickPixel::getColorQuantum()函數是PHP中的內置函數,用於獲取數組中像素的顏色作為Quantum值。此函數返回一個具有鍵r,g,b的數組,每個鍵分別代表紅色,綠色,藍色和alpha /不透明度。量子值範圍從0到65535,其中0是最低值,65535是最高值,即,不透明度0表示透明,而65535表示不透明。
用法:
array ImagickPixel::getColorQuantum( void )
參數:此函數不接受任何參數。
返回值:此函數返回包含量子值的數組。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickPixel::getColorQuantum()函數:
程序1:
<?php
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel();
// Get the color quantum
$colorQuantum = $imagickPixel->getColorQuantum();
print("<pre>".print_r($colorQuantum, true)."</pre>");
?>
輸出:
Array // which is the default value ( [r] => 0 [g] => 0 [b] => 0 [a] => 65535 )
程序2:
<?php
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel();
// Set the color
$imagickPixel->setColor('#48c268');
// Get the color quantum
$colorQuantum = $imagickPixel->getColorQuantum();
print("<pre>".print_r($colorQuantum, true)."</pre>");
?>
輸出:
Array ( [r] => 18504 [g] => 49858 [b] => 26728 [a] => 65535 )
參考: https://www.php.net/manual/en/imagickpixel.getcolorquantum.php
相關用法
- PHP ImagickPixel isSimilar()用法及代碼示例
- PHP ImagickPixel setColorValue()用法及代碼示例
- PHP ImagickPixel setColorValueQuantum()用法及代碼示例
- PHP ImagickPixel getColor()用法及代碼示例
- PHP ImagickPixel setColor()用法及代碼示例
- PHP ImagickPixel isPixelSimilarQuantum()用法及代碼示例
- PHP ImagickPixel __construct()用法及代碼示例
- PHP ImagickPixel getIndex()用法及代碼示例
- PHP ImagickPixel getColorCount()用法及代碼示例
- PHP ImagickPixel setHSL()用法及代碼示例
- PHP ImagickPixel getColorValueQuantum()用法及代碼示例
- PHP ImagickPixel getColorAsString()用法及代碼示例
- PHP ImagickPixel setIndex()用法及代碼示例
- PHP ImagickPixel getColorValue()用法及代碼示例
- PHP ImagickPixel isPixelSimilar()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickPixel getColorQuantum() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。