PHP | GmagickDraw annotate()函数
GmagickDraw::annotate()函数是PHP中的一个内置函数,用于在图像上绘制文本。
句法:
GmagickDraw GmagickDraw::annotate( float $x, float $y, string $text )
参数:此函数接受三个参数,如上所述,如下所述:
- $x:它指定文本的 x 坐标。
- $y:它指定文本的 y 坐标。
- $text:指定文本内容。
返回值:此函数在成功时返回 GmagickDraw 对象。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的GmagickDraw::annotate()函数:
使用图像:
程序 1(在绘图中添加文本):
setFillColor('white');
// Function to draw rectangle
$draw->rectangle(0, 0, 800, 400);
// Set the fill color
$draw->setFillColor('red');
// Set the font size
$draw->setfontsize(80);
// Annotate a text
$draw->annotate(30, 120, 'GeeksforGeeks');
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
程序 2(向图像添加文本):
setFillColor('green');
// Set the font size
$draw->setfontsize(30);
// Annotate a text
$draw->annotate(100, 120,
'This line is drawn with annotate');
// Use of drawimage function
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagickdraw.annotate。 PHP