How to convert a PDF file to a LibreOffice(ODT, ODS, ODP) file in PHP?

138 Views Asked by At

I am currently using PHPWord and I am wondering if there is a way to convert a PDF file to LibreOffice(ODT, ODS, ODP)?

Here is the code I used to convert a .DOC file to .DOCX with PHPWord:

use PhpOffice\PhpWord\IOFactory as WordIOFactory;

$phpWord = WordIOFactory::load('test/example.doc', 'MsDoc');
$phpWord->save('test.docx');

Can you help me to convert a PDF file to a LibreOffice(ODT, ODS, ODP) file in PHP?

0

There are 0 best solutions below