我正在使用 phpword 和 yii ,在这里我想生成 docx 文件,其中包含右上角的图像。这是我使用过的代码
$headert = $section->createHeader();
$table = $headert->addTable();
$table->addRow();
$table->addCell(4500)->addText('This is the header.');
$table->addCell(4500)->addImage('/home/dev238/projects/aegis/images/Logo_.jpg',
array('width' => 50,
'height' => 50,
'align' => 'right'));
结果是图像显示在文档内的左上角而不是标题部分。我正在使用 LibreOffice 进行查看