Open In App

PHP | ImagickDraw getTextUnderColor() Function

Last Updated : 17 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The ImagickDraw::getTextUnderColor() function is an inbuilt function in PHP which is used to get the color of a background rectangle to place under text annotations. By default, this background rectangle is transparent. Syntax:
ImagickPixel ImagickDraw::getTextUnderColor( void )
Parameters: This function doesn’t accepts any parameters. Return Value: This function returns an ImagickPixel value containing the under color. Below programs illustrate the ImagickDraw::getTextUnderColor() function in PHP: Program 1: php
<?php

// Create a new ImagickDraw object
$draw = new ImagickDraw();

// Get the text under color
$color = $draw->getTextUnderColor()->getColorAsString();
echo $color;
?>
Output:
srgba(0, 0, 0, 0) // Which is the default transparent color.
Program 2: php
<?php

// Create a new ImagickDraw object
$draw = new ImagickDraw();

// Set the text under color
$draw->setTextUnderColor('green');

// Get the text under color
$color = $draw->getTextUnderColor()->getColorAsString();
echo $color;
?>
Output:
srgb(0, 128, 0)
Program 3: php
<?php

// Create a new imagick object
$imagick = new Imagick();

// Create a image on imagick object
$imagick->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();
?>
Output: Reference: https://www.php.net/manual/en/imagickdraw.gettextundercolor.php

Next Article

Similar Reads