【发布时间】:2019-09-19 13:53:37
【问题描述】:
我的 phpword 有问题 (https://phpword.readthedocs.io/en/latest/index.html)
我想创建一条所有背景都是一种颜色(100% 宽度)的线条,但我只能将背景设为文本的大小。
$titleStyle=array('name' => 'Calibri','size' => 11, 'align' =>'center','marginTop' => 10,'bgColor' => 'd0cece');
// Create a new table style
$table_style = new \PhpOffice\PhpWord\Style\Table;
$table_style->setUnit(\PhpOffice\PhpWord\Style\Table::WIDTH_PERCENT);
$table_style->setWidth(100 * 50);
$table_style->setBgColor('d0cece');
// Set up our table.
$tableTitle = $section->addTable($table_style);
$tableTitle->addRow();
$tableTitle->addCell()->addText('Identificação pessoal',$titleStyle);
有人可以帮助我吗?
【问题讨论】: