PHP | imagickdraw getFontSize()函数
ImagickDraw::getFontSize()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体磅值。
句法:
float ImagickDraw::getFontSize( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含字体大小的浮点值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFontSize()函数:
方案一:
setFontSize(45);
// Get the font Size
$fontSize = $draw->getFontSize();
echo $fontSize;
?>
输出:
45
注意:默认字体大小为 12。
方案二:
newImage(600, 250, 'green');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Annotate a text
$draw->annotation(50, 100,
'The Font size here is default.'
. $draw->getFontSize() . '.');
// Set the font size
$draw->setFontSize(50);
// Annotate a text
$draw->annotation(50, 200,
'The Font Size here is '
. $draw->getFontSize() . '.');
// 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.getfontsize。 PHP