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 don't think I'm correct.. You save the document as HTML content
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'HTML');
After than you read the HTML file content and write the content as PDF file with the help of mPDF or tcPdf or fpdf.