您好我需要将DOCX转换为带图像和样式的HTML。
这是我的代码示例
$source = "Sampledocx.docx";
$fileheader = 'test';
$phpWord = \PhpOffice\PhpWord\IOFactory::load($source);
$htmlWriter=\PhpOffice\PhpWord\IOFactory::createWriter($phpWord,'HTML');
$htmlWriter->save(storage_path('app/public/html/'.$fileheader.'.html'));
我没有收到任何错误,它转换为html但没有图片。
为了保持图像,我需要更改什么?