I wan´t to convert a .docx file into PDF. If I use The PhpOffice\PhpWord Libraries, i lose my styles, so i have tried with OfficeConverter, but i have this error: "Convertion Failure! Contact Server Admin."
I have this in my Controller
$converter = new OfficeConverter(storage_path('./../MyFile.docx'));
$converter->convertTo(storage_path('./../MyFile.pdf'));
Also in the header of this php file i have:
use NcJoes\OfficeConverter\OfficeConverter;
use PDF;
This "use PDF" is like that because i have declarated in Config\app.php the providers and the aliases
Anyone knows why i'm having this error? Thanks!
Because OfficeConverter cant find
libreoffice
command in PATH. OfficeConverter__construct
have$bin = 'libreoffice'
param. Use it for pass path to you libreoffice installation.MacOS example: