Generate PDF from .docx generated by PHPWord

前端 未结 4 1356
梦如初夏
梦如初夏 2021-01-01 21:07

I am creating .docx files from a template using PHPWord. It works fine but now I want to convert the generated file to PDF.

Fi

4条回答
  •  猫巷女王i
    2021-01-01 21:40

    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');
    

提交回复
热议问题