📜  PHP | imagickpixel getColorValueQuantum()函数

📅  最后修改于: 2022-05-13 01:56:52.362000             🧑  作者: Mango

PHP | imagickpixel getColorValueQuantum()函数

ImagickPixel::getColorValueQuantum()函数是PHP中的一个内置函数,用于获取给定 ImagickPixel 颜色的所提供颜色通道的标准化值。归一化值位于 65535 最大值和 0 最低的量子范围内,这与getColorValue()函数相反,其中 1 最高,0 最低。

句法:

int ImagickPixel::getColorValueQuantum( int $color )

参数:此函数接受单个参数$color ,它包含一个 COLOR 常量。

下面给出了所有颜色常量的列表:

  • 想像::COLOR_BLACK (11)
  • 想像::COLOR_BLUE (12)
  • imagick::COLOR_CYAN (13)
  • 想像::COLOR_GREEN (14)
  • 想像::COLOR_RED (15)
  • 想像::COLOR_YELLOW (16)
  • 想像::COLOR_MAGENTA (17)
  • imagick::COLOR_OPACITY (18)
  • 想像::COLOR_ALPHA (19)
  • imagick::COLOR_FUZZ (20)

返回值:此函数返回一个包含颜色值的整数值。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickPixel::getColorValueQuantum()函数
方案一:

getColorValueQuantum(imagick::COLOR_BLUE);
echo $colorValue;
?>

输出:

10794

方案二:

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