PHP | GmagickDraw gettextdecoration()函数
GmagickDraw::gettextdecoration()函数是PHP中的一个内置函数,用于在使用文本注释时获取应用的装饰。
句法:
int GmagickDraw::gettextdecoration( void )
参数:此函数不接受任何参数。
返回值:此函数返回对应于 DECORATION 常量之一的整数值。
DECORATION 常量列表如下:
- Gmagick::DECORATION_NO (0)
- Gmagick::DECORATION_UNDERLINE (1)
- Gmagick::DECORATION_OVERLINE (2)
- Gmagick::DECORATION_LINETROUGH (3)
异常:此函数在出错时抛出 GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::gettextdecoration()函数:
方案一:
gettextdecoration();
echo $textDecoration;
?>
输出:
0 // Which is the default value
方案二:
settextdecoration(3);
// Get the text decoration
$textDecoration = $draw->gettextdecoration();
echo $textDecoration;
?>
输出:
3
使用图像:
方案 3:
setFillColor('#0E0E0E');
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
// Set the font size
$draw->setfontsize(30);
// Set the fill color
$draw->setFillColor('white');
// Set the text decoration to overline
$draw->settextdecoration(2);
// Get the text decoration
$textDecoration = $draw->gettextdecoration();
// Annotate a text
$draw->annotate(50, 100, 'The text decoration here is '
. $textDecoration);
// Use of drawimage functeannotate
$gmagick->drawImage($draw);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagickdraw.gettextdecoration。 PHP