📜  PHP | imagickdraw getTextKerning()函数

📅  最后修改于: 2022-05-13 01:56:25.043000             🧑  作者: Mango

PHP | imagickdraw getTextKerning()函数

ImagickDraw::getTextKerning()函数是PHP中的一个内置函数,用于获取图像中使用的文本字距,即字母之间的间距。

句法:

float ImagickDraw::getTextKerning( void )

参数:此函数不接受任何参数。

返回值:此函数返回一个包含文本字距调整的浮点值。

异常:此函数在出错时抛出 ImagickException。

下面给出的程序说明了PHP中的ImagickDraw::getTextKerning()函数

方案一:

getTextKerning();
echo $textKerning;
?>

输出:

0 // which is the default text kerning.

方案二:

setTextKerning(5);
  
// Get the text Kerning
$textKerning = $draw->getTextKerning();
echo $textKerning;
?>

输出:

5

方案 3:

newImage(800, 250, '#eba09b');
   
// Create a new ImagickDraw object
$draw = new ImagickDraw();
   
// Set the font size
$draw->setFontSize(20);
   
// Annotate a text
$draw->annotation(50, 100, 
              'The text kerning here is default.');
   
// Set the text kerning
$draw->setTextKerning(10);
   
// Annotate a text
$draw->annotation(50, 200, 'The text kerning here is ' 
                      . $draw->getTextKerning() . '.');
   
// 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.gettextkerning。 PHP