使特定的单词或一堆单词在phppresentation中加粗

时间:2018-11-01 14:06:19

标签: php phppresentation

如何使用phppresentation使段落中的特定单词或行变为粗体。

$textRun = $shape->createTextRun('Your content is centered around promotion of events. While we encourage continuing this practice based on the strong results.');
      $textRun->getFont()->setSize(13);
      $textRun->getFont()->setColor($colorBlack);
      $textRun->getFont()->setName('Montserrat');

在上面的文本中,我要对“粗体”和其他文本进行“事件促销”。我如何在phppresentation库中做到这一点。

谢谢。

1 个答案:

答案 0 :(得分:1)

您必须将文本分成多个部分。

您可以使用以下代码:

$oFont = new Font();
$oFont->setSize(13);
$oFont->setColor($colorBlack);
$oFont->setName('Montserrat');

$oFontBold = clone $oFont;
$oFontBold->setBold(true);

$textRun = $shape->createTextRun('Your content is centered around ');
$textRun->setFont($oFont);

$textRun = $shape->createTextRun('promotion of events');
$textRun->setFont($oFontBold);

$textRun = $shape->createTextRun('. While we encourage continuing this practice based on the strong results.');
$textRun->setFont($oFont);