PHP | imagickdraw getFontStyle()函数
ImagickDraw::getFontStyle()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体样式。
句法:
int ImagickDraw::getFontStyle( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个与 STYLE 常量之一相对应的整数值,如果没有设置样式,则返回 0。
STYLE 常量列表如下:
- 想像::STYLE_NORMAL (1)
- 想像::STYLE_ITALIC (2)
- imagick::STYLE_OBLIQUE (3)
- imagick::STYLE_ANY (4)
下面的程序说明了PHP中的ImagickDraw::getFontStyle()函数:
方案一:
getFontStyle();
echo $fontStyle;
?>
输出:
0 // Which is default value.
方案二:
setFontStyle(imagick::STYLE_OBLIQUE);
// Get the font Style
$fontStyle = $draw->getFontStyle();
echo $fontStyle;
?>
输出:
3
方案 3:
newImage(800, 250, '#bfc7d6');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the font size
$draw->setFontSize(30);
// Annotate a text
$draw->annotation(50, 100,
'The Font style here is default.');
// Set the font style
$draw->setFontStyle(imagick::STYLE_ITALIC);
// Annotate a text
$draw->annotation(50, 200, 'The Font style here is '
. $draw->getFontStyle() . '.');
// 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.getfontstyle。 PHP