PHP | imagickpixel getColorQuantum()函数
ImagickPixel::getColorQuantum()函数是PHP中的一个内置函数,用于获取数组中像素的颜色作为 Quantum 值。此函数返回一个数组,其中包含键 r、g、b 和 an,每个键分别代表红色、绿色、蓝色和 alpha/opacity。量子值范围从 0 到 65535,其中 0 是最小值,65535 是最大值,即不透明度为 0 表示透明,65535 表示不透明。
句法:
array ImagickPixel::getColorQuantum( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含量子值的数组。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickPixel::getColorQuantum()函数:
方案一:
getColorQuantum();
print("".print_r($colorQuantum, true)."
");
?>
输出:
Array // which is the default value
(
[r] => 0
[g] => 0
[b] => 0
[a] => 65535
)
方案二:
setColor('#48c268');
// Get the color quantum
$colorQuantum = $imagickPixel->getColorQuantum();
print("".print_r($colorQuantum, true)."
");
?>
输出:
Array
(
[r] => 18504
[g] => 49858
[b] => 26728
[a] => 65535
)
参考: https://www. PHP.net/manual/en/imagickpixel.getcolorquantum。 PHP