PHP | imagickdraw setTextKerning()函数
ImagickDraw::setTextKerning()函数是PHP中的一个内置函数,用于设置定义文本间距的文本字距。
句法:
bool ImagickDraw::setTextKerning( float $kerning )
参数:此函数接受单个参数$kerning ,其中包含文本字距调整。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的ImagickDraw::setTextKerning()函数:
方案一:
setTextKerning(10);
// Get the text Kerning
$textKerning = $draw->getTextKerning();
echo $textKerning;
?>
输出:
10
方案二:
newImage(800, 250, 'black');
// Create a new ImagickDraw object
$draw = new ImagickDraw();
// Set the fill color
$draw->setFillColor('red');
// Set the text kerning
$draw->setTextKerning(30);
// Set the font size
$draw->setFontSize(50);
// Annotate a text
$draw->annotation(50, 200, 'GeeksforGeeks');
// 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.settextkerning。 PHP