📜  PHP | Gmagick getimagemattecolor()函数

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

PHP | Gmagick getimagemattecolor()函数

Gmagick::getimagemattecolor()函数是PHP中的一个内置函数,用于获取图像的蒙版颜色。

句法:

GmagickPixel Gmagick::getimagemattecolor( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个包含遮罩颜色的 GmagickPixel 对象。

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

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

使用图像:

方案一:

getimagemattecolor();
echo $colorPixel->getcolor();
?>

输出:

rgb(48573, 48573, 48573)

方案二:

setimagemattecolor('green');
  
// Get the matte color
$colorPixel = $gmagick->getimagemattecolor();
echo $colorPixel->getcolor();
?>

输出:

rgb(0, 32896, 0)

参考: https://www. PHP.net/manual/en/gmagick.getimagemattecolor。 PHP