我想在同一行中插入两张图像,并以this-image这样的极右对齐和左对齐来代替单词,但是每次插入时都会出现错误, 这是我的代码
$section_style = $section->getStyle();
$position =
$section_style->getPageSizeW()
- $section_style->getMarginRight()
- $section_style->getMarginLeft();
$phpWord->addParagraphStyle("leftRight", array("tabs" => array(
new \PhpOffice\PhpWord\Style\Tab("right", $position)
)));
$section->addText("Left Text\tRight Text", array(), "leftRight");
`