提问人:savegramer 提问时间:1/16/2023 最后编辑:savegramer 更新时间:1/16/2023 访问量:122
如何在PHP中将PDF文件转换为LibreOffice(ODT, ODS, ODP)文件?
How to convert a PDF file to a LibreOffice(ODT, ODS, ODP) file in PHP?
问:
我目前正在使用 PHPWord,我想知道是否有办法将 PDF 文件转换为 LibreOffice(ODT、ODS、ODP)?
这是我用来使用 PHPWord 将 .DOC 文件转换为 .DOCX 的代码:
use PhpOffice\PhpWord\IOFactory as WordIOFactory;
$phpWord = WordIOFactory::load('test/example.doc', 'MsDoc');
$phpWord->save('test.docx');
你能帮我在 PHP 中将 PDF 文件转换为 LibreOffice(ODT、ODS、ODP) 文件吗?
答: 暂无答案
评论