📜  PHP | imagickdraw getTextUnderColor()函数

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

PHP | imagickdraw getTextUnderColor()函数

ImagickDraw::getTextUnderColor()函数是PHP中的一个内置函数,用于获取背景矩形的颜色以放置在文本注释下。默认情况下,此背景矩形是透明的。

句法:

ImagickPixel ImagickDraw::getTextUnderColor( void )

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

返回值:此函数返回一个包含底色的 ImagickPixel 值。

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

方案一:

getTextUnderColor()->getColorAsString();
echo $color;
?>

输出:

srgba(0, 0, 0, 0) // Which is the default transparent color.

方案二:

setTextUnderColor('green');
  
// Get the text under color
$color = $draw->getTextUnderColor()->getColorAsString();
echo $color;
?>

输出:

srgb(0, 128, 0)

方案 3:

newImage(800, 250, '#1cced4');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font size
$draw->setFontSize(35);
  
// Set the text under color
$draw->setTextUnderColor('green');
  
// Annotate a text
$draw->annotation(50, 80, "The text under color here is "
        . $draw->getTextUnderColor()->getColorAsString());
  
// Set the text under color
$draw->setTextUnderColor('blue');
  
// Annotate a text
$draw->annotation(50, 160, "The text under color here is "
        . $draw->getTextUnderColor()->getColorAsString());
  
// Render the draw commands
$imagick->drawImage($draw);
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagickdraw.gettextundercolor。 PHP