PHP | GmagickDraw getfontweight()函数
GmagickDraw::getfontweight()函数是PHP中的一个内置函数,用于获取文本注释时使用的字体粗细。字体粗细实际上表示字体的粗细,字体粗细越大,粗体文本就越多。它可以是 100 到 900 之间的任何值。
句法:
int GmagickDraw::getfontweight( void )
参数:此函数不接受任何参数。
返回值:此函数返回一个包含字体粗细的整数值。
异常:此函数在出错时抛出 GmagickDrawException。
下面给出的程序说明了PHP中的GmagickDraw::getfontweight()函数:
方案一:
getfontweight();
echo $fontWeight;
?>
输出:
0 // Which is the default value
方案二:
setfontweight(200);
// Get the font Weight
$fontWeight = $draw->getfontweight();
echo $fontWeight;
?>
输出:
200
使用图像:
方案 3:
setFillColor('#0E0E0E');
// Set the font size
$draw->setfontsize(40);
// Draw rectangle for background
$draw->rectangle(-10, -10, 800, 400);
// Set the fill color
$draw->setFillColor('white');
// Set the font weight
$draw->setFontWeight(900);
// Annotate a text
$draw->annotate(50, 100,
'The Font weight here is '
. $draw->getFontWeight() . '.');
// 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.getfontweight。 PHP