我目前正在使用PhpWord。我添加了一個header
部分,並在其中添加了兩個圖像。圖像需要對齊,左側和右側對齊,但在同一行。我有這個代碼,但只打印一個在另一個下面的圖像,只有這樣我才能改變它們是在.docx文件中。WrappingStyle/Align圖像不能在標題部分工作
$header = $section->addHeader();
$header->addImage('http://localhost/doWords/logoRenatea.jpg',
array(
'width' => '291',
'height' => '81',
'align' => 'left',
'marginTop' => -1,
'marginLeft' => -1,
'wrappingStyle' => 'behind'
));
$header->addImage('http://localhost/doWords/logoMTESS.jpg',
array(
'width' => '110',
'height' => '44',
'align' => 'right',
'marginTop' => -1,
'marginLeft' => -1,
'wrappingStyle' => 'infront'
));
已經試過沒有wrappingStyle,沒有邊距,也沒有工作。有任何想法嗎?
輸出:
謝謝,會嘗試它......但我已經解決了它,將答案與我的解決方案 – AleOtero93