我使用phpword插件在我的项目中创建word文件,但我有一个问题,即段落没有对齐中心,例如:
我该怎么办?
$textrun = $section->createTextRun(array('widowControl'=>'true'));
$textrun->addText('There is a',array('size'=>13));
$textrun->addImage('563803062838d1446511366.gif');
答案 0 :(得分:0)
没有承诺,但是这会给你一些与'
'玩'的价值$textrun->addImage(
'563803062838d1446511366.gif',
array(
'width' => 100, //set to match image
'height' => 100, //set to match image
'marginTop' => 5, //my guess play with this value
'marginLeft' => 0,
'wrappingStyle' => 'behind'
)
);
您还可以考虑在图像中添加空白区域来操作其位置