📜  PHP | imagickdraw setTextInterwordSpacing()函数

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

PHP | imagickdraw setTextInterwordSpacing()函数

ImagickDraw::setTextInterwordSpacing()函数是PHP中的一个内置函数,用于设置文本字间距,这意味着每个单词之间的间距。数字越大,空间越大。默认间距为 0。

句法:

bool ImagickDraw::setTextInterwordSpacing( float $spacing )

参数:此函数接受单个参数$spacing ,它保存文本字间距。

返回值:此函数在成功时返回 TRUE。

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

方案一:

setTextInterWordSpacing(40);
  
// Get the text interword spacing
$textInterwordSpacing = $draw->getTextInterwordSpacing();
echo $textInterwordSpacing;
?>

输出:

40

方案二:

newImage(800, 250, '#1cced4');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the font size
$draw->setFontSize(50);
  
// Set the text interword spacing
$draw->setTextInterwordSpacing(65);
  
// Annotate a text
$draw->annotation(150, 140, "Geeks for Geeks");
  
// 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.settextinterwordspacing。 PHP