Generate PDF from .docx generated by PHPWord

前端 未结 4 1355
梦如初夏
梦如初夏 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条回答
  •  无人及你
    2021-01-01 21:46

    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.

提交回复
热议问题