📜  PHP |想象一下 getImageBackgroundColor()函数

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

PHP |想象一下 getImageBackgroundColor()函数

Imagick::getImageBackgroundColor()函数是PHP中的一个内置函数,用于获取图像背景颜色。

句法:

ImagickPixel Imagick::getImageBackgroundColor( void )

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

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

返回值:此函数返回一个设置为图像背景颜色的 ImagickPixel。

下面的程序说明了PHP中的Imagick::getImageBackgroundColor()函数

方案一:

getImageBackgroundColor();
  
// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();
  
echo $color;
?>

输出:

rgb(255, 255, 255) which is the default value.

方案二:

setImageBackgroundColor('orange');
  
// Get the Background Color
$imagickPixelColor = $imagick->getImageBackgroundColor();
  
// Get the Color from ImagickPixel
$color = $imagickPixelColor->getColorAsString();
  
echo $color;
?>

输出:

rgb(255, 165, 0)

参考: https://www. PHP.net/manual/en/imagick.getimagebackgroundcolor。 PHP