I am creating .docx files from a template using PHPWord. It works fine but now I want to convert the generated file to PDF.
.docx
PHPWord
PDF
Fi
I used Gears/pdf to convert the docx file generated by phpword to PDF:
$success = Gears\Pdf::convert( 'file_path/file_name.docx', 'file_path/file_name.pdf');