无法在phpWord文档中获取标题文本以与页眉顶部对齐

时间:2016-11-29 16:23:46

标签: php phpword

我左边有一个标识,标题右边有文字。它几乎是完美的,但我无法文字出现在页面的最顶端;它在左侧显示中途徽标。

我玩过所有的文字参数 - 空格,缩进,前后 - 都无济于事。有什么想法吗?

我的代码是:

$section = $phpWord->addSection();   

$header = $section->addHeader();
$header ->addImage('logo.png',
        array(
            'width' => 200,
            'height' => 80,
          'wrappingStyle' => 'square',
    'positioning' => 'absolute',
    'posHorizontalRel' => 'margin',
    'posVerticalRel' => 'line',
        )
    );

$header->addText(
    'Company Name, Address blah blah
Blah blah blah blah blah blah blah',
    array('bold' => true),
    array(
        'space' => array('before' => 2, 'after' => 500), 
        'indentation' => array('left' => 4500, 'right' => 10)
    )
  );

1 个答案:

答案 0 :(得分:1)

如何在标题内使用表格?有这样的东西(ofc将细胞大小调整到与你的徽标大小匹配的东西):

$section = $phpWord->addSection();   

$header = $section->addHeader();
$table = $header->addTable();
$table->addRow();
$table->addCell(4500)->addImage('logo.png',
        array(
            'width' => 200,
            'height' => 80,
        )
    );

$table->addCell(4500)->addText(
    'Company Name, Address blah blah Blah blah blah blah blah blah blah',
    array('bold' => true)
  );