如何通过phpword对齐段落中心?

时间:2015-11-11 02:24:27

标签: php phpword

我使用phpword插件在我的项目中创建word文件,但我有一个问题,即段落没有对齐中心,例如:
enter image description here

但我想要这样:
enter image description here

我该怎么办?

$textrun = $section->createTextRun(array('widowControl'=>'true'));
$textrun->addText('There is a',array('size'=>13));
$textrun->addImage('563803062838d1446511366.gif');

1 个答案:

答案 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'
    )
);

您还可以考虑在图像中添加空白区域来操作其位置