ImagickPixel::getColorValueQuantum()函數是PHP中的內置函數,用於獲取給定ImagickPixel顏色的所提供顏色通道的標準化值。與getColorValue()函數相反,歸一化的值位於最大範圍為65535且0最低的量子範圍內,其中1最高而0最低。
用法:
int ImagickPixel::getColorValueQuantum( int $color )
參數:該函數接受單個參數$color,該參數持有COLOR常量之一。
所有顏色常量的列表如下:
- imagick::COLOR_BLACK(11)
- imagick::COLOR_BLUE(12)
- imagick::COLOR_CYAN(13)
- imagick::COLOR_GREEN(14)
- imagick::COLOR_RED(15)
- imagick::COLOR_YELLOW(16)
- imagick::COLOR_MAGENTA(17)
- imagick::COLOR_OPACITY(18)
- imagick::COLOR_ALPHA(19)
- imagick::COLOR_FUZZ(20)
返回值:該函數返回一個包含color值的整數值。
異常:該函數在錯誤時引發ImagickException。
下麵給出的程序說明了PHP中的ImagickPixel::getColorValueQuantum()函數:程序1:
<?php
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel('#d4a62a');
// Get the Color value with imagick::COLOR_BLUE
$colorValue = $imagickPixel->getColorValueQuantum(imagick::COLOR_BLUE);
echo $colorValue;
?>
輸出:
10794
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the image histogram
$histogramElements = $imagick->getImageHistogram();
// Get the 501th pixel
$getPixel = $histogramElements[500];
// Get the Color value with imagick::COLOR_GREEN
$colorValue = $getPixel->getColorValueQuantum(imagick::COLOR_GREEN);
echo $colorValue;
?>
輸出:
26214
參考: https://www.php.net/manual/en/imagickpixel.getcolorvaluequantum.php
相關用法
- PHP ImagickPixel getColorQuantum()用法及代碼示例
- PHP ImagickPixel setColorValue()用法及代碼示例
- PHP ImagickPixel setColorValueQuantum()用法及代碼示例
- PHP ImagickPixel getColor()用法及代碼示例
- PHP ImagickPixel setColor()用法及代碼示例
- PHP ImagickPixel isSimilar()用法及代碼示例
- PHP ImagickPixel isPixelSimilarQuantum()用法及代碼示例
- PHP ImagickPixel __construct()用法及代碼示例
- PHP ImagickPixel getIndex()用法及代碼示例
- PHP ImagickPixel getColorCount()用法及代碼示例
- PHP ImagickPixel setHSL()用法及代碼示例
- PHP ImagickPixel getColorValue()用法及代碼示例
- PHP ImagickPixel getColorAsString()用法及代碼示例
- PHP ImagickPixel setIndex()用法及代碼示例
- PHP ImagickPixel getHSL()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickPixel getColorValueQuantum() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。