PHPWord to PDF not able to load library

后端 未结 3 1498
我寻月下人不归
我寻月下人不归 2021-01-20 15:50

I have been trying all day to get this to work. Right now I am able to save the document as .docx file but I wanted to be able to save the document as PDF I have tried with

3条回答
  •  無奈伤痛
    2021-01-20 16:39

    Make sure to send DOMPDF Path in:

    $domPdfPath = "..vendor/dompdf/dompdf/";
    Settings::setPdfRendererName(Settings::PDF_RENDERER_DOMPDF);
    Settings::setPdfRendererPath($domPdfPath); //<---
    

    Then in AbstractRerender construct if you echo $this->Include file you should see 'dompdf_config.inc.php'

    If you don't have dompdf_config.inc.php file, try to use dompdf 0.6.2

提交回复
热议问题