当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick setImageBackgroundColor()用法及代码示例


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

用法:

bool Imagick::setImageBackgroundColor( mixed $background )

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


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

异常:该函数在错误时引发ImagickException。

以下示例程序旨在说明PHP中的Imagick::setImageBackgroundColor()函数:

程序1:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Set background color 
$imagick->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(); 
?>

输出:

程序2:

<?php 
  
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Write the caption in a image 
$imagick->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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick setImageBackgroundColor() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。