如何在左侧获得一个单元格文本,在右侧获得图像

时间:2019-03-25 13:01:09

标签: image text phpword

在我的PHHWORD单元格中,我想在左侧显示一堆文本,在右侧显示一幅图像。要清楚:所有这些都在一个细胞中

wanted situation,这是我目前的结果 current situation

这是我使用的代码

$cell = $id->addCell(1750);
$textrun = $cell->createTextRun();
$textrun->addImage('uploads/'. $filename,array('width'=>100, 
            'marginTop'     => -1,
    'marginRight'    => 0,
    'wrappingStyle' => 'inline'
    ));
$textrun->addText("Lorem ipsum dolor sit ...... ");

0 个答案:

没有答案