📜  PHP | imagickpixel setColorValueQuantum()函数

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

PHP | imagickpixel setColorValueQuantum()函数

ImagickPixel::setColorValueQuantum()函数是PHP中的一个内置函数,用于为给定的 ImagickPixel 的颜色设置提供的颜色通道的值。该值可以在 0 到 65535 的范围内。

句法:

bool ImagickPixel::setColorValueQuantum( 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::setColorValueQuantum()函数

方案一:

setColorValueQuantum(imagick::COLOR_BLUE, 4500);
  
// Get the Color value with imagick::COLOR_BLUE
$colorValue = $imagickPixel->getColorValueQuantum(imagick::COLOR_BLUE);
echo $colorValue;
?>

输出:

4500

方案二:

getPixelIterator();
$x = 200;
  
// Loop through pixel rows
foreach ($imageIterator as $row => $pixels) {
    // Loop through the pixels in the row
    if ($row % 2) {
        foreach ($pixels as $column => $pixel) {
            if ($column % 1000) {
                // Set the color
                $pixel->setColor("red");
  
                // Set the color value of Imagick::COLOR_RED
                $pixel->setColorValueQuantum(Imagick::COLOR_RED, $x);
                $x = $x + 1000;
            }
        }
    }
  
    // Sync the iterator after each iteration
    $imageIterator->syncIterator();
}
  
header("Content-Type: image/jpg");
echo $imagick;
?>

输出:

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