Когда я добавляю изображение в свой код, оно отображает пустое изображение в моем офисе.
$document_with_table = new \PhpOffice\PhpWord\PhpWord();
$section = $document_with_table->addSection();
$table = $section->addTable(array('align'=>'center'));
$table->addRow();
Это моя проблема
$table->addCell(2000,$styleCell)->addImage('source_image.jpg');
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($document_with_table, 'Word2007');
$fullxml = $objWriter->getWriterPart('Document')->write();
$tablexml = preg_replace('/^[\s\S]*(<w:tbl\b.*<\/w:tbl>).*/', '$1', $fullxml);
$template_document = new \PhpOffice\PhpWord\TemplateProcessor(base_url('my_template.docx'));
$template_document->setValue('table', $tablexml);