如何使用PHP将pdf转换为word

时间:2016-11-09 10:08:12

标签: php

  

将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文档。请通过某种方式帮助我。非常感谢提前。

0 个答案:

没有答案