📜  PHP | imagickpixel getColorValue()函数

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

PHP | imagickpixel getColorValue()函数

ImagickPixel::getColorValue()函数是PHP中的一个内置函数,用于获取给定 ImagickPixel 颜色的所提供颜色通道的标准化值。归一化值是介于 0 和 1 之间的浮点数。

句法:

float ImagickPixel::getColorValue( 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::getColorValue()函数
方案一:

getColorValue(imagick::COLOR_RED);
echo $colorValue;
?>

输出:

0.67843137254902

方案二:

getImageHistogram();
   
// Get the 301th pixel
$getPixel = $histogramElements[300];
  
// Get the Color value with imagick::COLOR_GREEN
$colorValue = $getPixel->getColorValue(imagick::COLOR_GREEN);
  
echo $colorValue;
?>

输出:

0.29803921568627

参考: https://www. PHP.net/manual/en/imagickpixel.getcolorvalue。 PHP