将PDF转换为word文档
like.doc / .DOCX。 我正在尝试使用PHPWord库但没办法正确地完成它。
<?php
include 'vendor/autoload.php';
include_once 'class.filetotext.php';
$reader = new Filetotext("test.pdf");
$file = $reader->convertToText();
$phpWord = new \PhpOffice\PhpWord\PhpWord();
$section = $phpWord->addSection();
$section->addText(
$file
);
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'docx');
$objWriter->save('helloWorld.pdf');
?>
像这样,我只能获得pdf的文本内容并将其转换为doc或docx。但图像内容和样式被删除。我需要一个相同的内容word文档。请通过某种方式帮助我。非常感谢提前。