如何使用 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 库中做到这一点。
提前致谢。