使用phpword 如何才能在一个表格中的某个单元格 插入多张图片?

发布网友 发布时间:2022-04-06 00:26

我来回答

3个回答

热心网友 时间:2022-04-06 01:56

  require_once 'PHPWord.php';
  $PHPWord = new PHPWord();
  $section = $PHPWord->createSection();
  //定义样式数组
  $styleTable = array(
  'borderSize'=>6,
  'borderColor'=>'006699',
  'cellMargin'=>80
  );
  $styleFirstRow = array(
  'borderBottomSize'=>18,
  'borderBottomColor'=>'0000ff',
  'bgColor'=>'66bbff'
  );
  //定义单元格样式数组
  $styleCell = array('valign'=>'center');
  $styleCellBTLR = array('valign'=>'center','textDirection'=>PHPWord_Style_Cell::TEXT_DIR_BTLR);
  //定义第一行的字体
  $fontStyle = array('bold'=>true,'align'=>'center');
  //添加表格样式
  $PHPWord->addTableStyle('myOwnTableStyle',$styleTable,$styleFirstRow);
  //添加表格
  $table = $section->addTable('myOwnTableStyle');

热心网友 时间:2022-04-06 03:14

$cell->addImage($fileName1, $imageStyle);
$cell->addImage($fileName2, $imageStyle);

热心网友 时间:2022-04-06 04:48

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com