在PhpWord

时间:2015-12-15 10:16:14

标签: php phpword

我想要一个右侧的图像,左侧的文字漂浮在图像周围。另一种方式非常好,Recipies section in the documentation上还有一个例子。但是,我没有使用浮在右边的图像。我尝试了什么:

addImage('myimage.png', 
   array(
       'width'=>320, 
       'height'=>240, 
       'align'=>'right',
       'wrappingStyle'=>'square',
       'positioning' => 'absolute'
   )
);

addImage('myimage.png', 
   array(
       'width'=>320, 
       'height'=>240, 
       'align'=>'right',
       'wrappingStyle'=>'square',
       'positioning' => 'absolute',
       'posHorizontalRel' => 'margin',
       'posVerticalRel' => 'line'
   )
);

我还尝试过负像宽度等,但这两种方法都不起作用。不幸的是,整个项目的文档真的很差,至少在phpword.readthedocs.org

1 个答案:

答案 0 :(得分:5)

我也有同样的问题,到目前为止在互联网上没有答案。所以这就是我想出的:

subscribe()