📜  PHP | imagickdraw setTextInterlineSpacing()函数

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

PHP | imagickdraw setTextInterlineSpacing()函数

ImagickDraw::setTextInterlineSpacing()函数是PHP中的一个内置函数,用于设置文本行间距。

句法:

bool ImagickDraw::setTextInterlineSpacing( float $spacing )

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

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

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

方案一:

setTextInterLineSpacing(15);
   
// Get the text interline spacing
$textInterlineSpacing = $draw->getTextInterLineSpacing();
echo $textInterlineSpacing;
?>

输出:

15

方案二:

newImage(800, 250, 'white');
  
// Create a new ImagickDraw object
$draw = new ImagickDraw();
  
// Set the fill color
$draw->setFillColor('green');
  
// Set the font size
$draw->setFontSize(40);
  
// Set the text interline spacing
$draw->setTextInterLineSpacing(40);
  
// Annotate a text
$draw->annotation(350, 70, "Geeks \nfor\nGeeks");
  
// 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.settextinterlinespacing。 PHP