使用 PHPWord 库读取 PDF 文件

Reading PDF file with PHPWord library

我已尝试阅读 .docx 文件。我成功读取了 .docx 文件。但我必须用 PHPWord 阅读 .pdf 文件。

知道我该怎么做吗?

我试过代码

// Read contents
$source = "./example.pdf";
$phpWord = \PhpOffice\PhpWord\IOFactory::load($source, 'Word2007');

$data = '';
$section = $phpWord->addSection();
$section->addText($data);

$name = "officefile";
$source = __DIR__ . "/results/{$name}.html";

// Saving the document as HTML file...
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'HTML');
$objWriter->save($source);

PHPWord 无法读取 PDF 文件。请参阅 this Github issue 也请参阅它超出了项目范围。

可以在 this Whosebug question 中找到一些使用 PHP 阅读 PDF 文件的替代方法。