📜  PHP | GmagickPixel getcolorvalue()函数

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

PHP | GmagickPixel getcolorvalue()函数

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

句法:

float GmagickPixel::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)

返回值:此函数返回指定为 0 到 1 之间的浮点数的颜色通道的值。

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

下面给出的程序说明了PHP中的GmagickPixel::getcolorvalue()函数

方案一:

getcolorvalue(gmagick::COLOR_RED); 
echo $colorValue; 
?>

输出:

0.67843137254902

使用图像:

方案二:

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

输出:

0.29803921568627

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