Open
Description
Describe the Bug
I'm attempting to convert a DOCX document to HTML using the PHPWord library. However, during the conversion process, it doesn't include images, backgrounds, headers, or footers. It only retains tables and plain text without any styling. Below my code:
Steps to Reproduce
use PhpOffice\PhpWord\IOFactory;
$phpWord = IOFactory::load('test1.docx', 'Word2007');
$htmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'HTML');
$htmlWriter->save('test.html');
I am attaching the docx: