PHP | imagickdraw getFontWeight()函数
ImagickDraw::getFontWeight()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体粗细。字体粗细实际上表示字体的粗细,字体粗细越大,粗体文本就越多。它可以是 100 到 900 之间的任何值。
句法:
int ImagickDraw::getFontWeight( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含字体粗细的整数值,如果没有设置粗细,则返回 0。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::getFontWeight()函数:
方案一:
getFontWeight();
echo $fontWeight;
?>
输出:
0 // which is the default value.
方案二:
setFontWeight(110);
// Get the font Weight
$fontWeight = $draw->getFontWeight();
echo $fontWeight;
?>
输出:
110
方案 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 weight here is default.');
// Set the font weight
$draw->setFontWeight(900);
// Annotate a text
$draw->annotation(50, 200,
'The Font weight here is '
. $draw->getFontWeight() . '.');
// 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.getfontweight。 PHP