PHP | ImagickDraw getFontFamily()函数
ImagickDraw::getFontFamily()函数是PHP中的一个内置函数,用于在使用文本注释时获取要使用的字体系列。它告诉要使用的文本的具体大小和样式,并且有许多可用的字体系列,如 Times、AvantGarde、NewCenturySchlbk、Palatino 等。
句法:
string ImagickDraw::getFontFamily( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含字体系列名称的字符串值。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFontFamily()函数:
方案一:
setFontFamily("Palatino");
// Get the font
$font = $draw->getFontFamily();
echo $font;
?>
输出:
Palatino
方案二:
newImage(800, 250, 'grey');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the font size
$draw->setFontSize(50);
// Annotate a text
$draw->annotation(50, 100,
'The Font Family here is default.');
// Set the font family
$draw->setFontFamily("sans-sarif");
// Set the font size
$draw->setFontSize(50);
// Annotate a text
$draw->annotation(50, 200,
'The Font Family here is '
. $draw->getFontFamily() . '.');
// 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.getfontfamily。 PHP