📜  PHP | imagickdraw setTextUnderColor()函数

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

PHP | imagickdraw setTextUnderColor()函数

ImagickDraw::setTextUnderColor()函数是PHP中的一个内置函数,用于设置背景矩形的颜色以放置在文本注释下。

句法:

bool ImagickDraw::setTextUnderColor( $under_color )

参数:此函数接受单个参数$under_color用于保存文本背景颜色的值。

返回值:此函数不返回任何值。

下面的程序说明了PHP中的ImagickDraw::setTextUnderColor()函数:

方案一:

setFillColor('white');
  
// Set the font size
$draw->setFontSize(68);
  
// Set the Text Under Color
$draw->setTextUnderColor('green');
  
// Set the text to be added
$draw->annotation(0, 190, "GeeksForGeeks");
  
// Set the font size
$draw->setFontSize(40);
  
// Set the text to be added
$draw->annotation(120, 290, "@sarthak_ishu11");
  
// Create new Imagick object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 400, 'lightgreen');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image 
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:
setTextUnderColor

方案二:

setFillColor('white');
  
// Set the font size
$draw->setFontSize(68);
  
// Set the text to be added
$draw->annotation(0, 90, "GeeksForGeeks");
  
// Set the Text Under Color
$draw->setTextUnderColor('blue');
  
// Set the text to be added
$draw->annotation(0, 190, "GeeksForGeeks");
  
// Create new Imagick object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 300, 'lightgreen');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image 
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image 
echo $imagick->getImageBlob();
?>

输出:
setTextUnderColor

参考: http: PHP。 PHP