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

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

PHP |想象一下 setImageBackgroundColor()函数

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

句法:

bool Imagick::setImageBackgroundColor( mixed $background )

参数:此函数接受单个参数$background保存背景颜色。

返回值:此函数在成功时返回 TRUE。

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

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

方案一:

setImageBackgroundColor('yellow');
  
// Set the ImageAlphaChannel to 9 which corresponds
// to imagick::ALPHACHANNEL_TRANSPARENT
$imagick->setImageAlphaChannel(9);
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

newPseudoImage(800, 270, "caption:GeekforGeeks");
  
// Set background color
$imagick->setImageBackgroundColor('grey');
  
// Set the ImageAlphaChannel to 9 which corresponds
// to imagick::ALPHACHANNEL_TRANSPARENT
$imagick->setImageAlphaChannel(9);
  
// Display the image
$imagick->setformat('png');
header("Content-Type: image/png");
  
echo $imagick->getImageBlob();
?>

输出:

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