PHP | imagickpixel setColorValue()函数
ImagickPixel::setColorValue()函数是PHP中的一个内置函数,用于为给定的 ImagickPixel 的颜色设置提供的颜色通道的标准化值。归一化值是介于 0 和 1 之间的浮点数。
句法:
bool ImagickPixel::setColorValue( int $color, float $value )
参数:该函数接受上面提到的两个参数,如下所述:
- $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)
- $value:指定要设置的值。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickPixel::setColorValue()函数:
方案一:
setColorValue(imagick::COLOR_RED, 0.8);
// Get the Color value with imagick::COLOR_RED
$colorValue = $imagickPixel->getColorValue(imagick::COLOR_RED);
echo $colorValue;
?>
输出:
0.8
方案二:
getPixelIterator();
// Loop through pixel rows
foreach ($imageIterator as $row => $pixels) {
// Loop through the pixels in the row
if ($row % 5) {
foreach ($pixels as $column => $pixel) {
if ($column % 1000) {
// Set the color
$pixel->setColor("green");
// Set the color value of Imagick::COLOR_ALPHA (opacity)
$pixel->setColorValue(Imagick::COLOR_ALPHA, 0);
}
}
}
// Sync the iterator after each iteration
$imageIterator->syncIterator();
}
header("Content-Type: image/jpg");
echo $imagick;
?>
输出:
参考: https://www. PHP.net/manual/en/imagickpixel.setcolorvalue。 PHP