dompdf image not real image not readable or empty

后端 未结 4 1959
春和景丽
春和景丽 2021-01-29 04:20

i\'m having problems with dompdf, the images i insert wont read when converted to pdf file

when i load it to dompdf using

php method



        
4条回答
  •  自闭症患者
    2021-01-29 05:01

    Are you loading this code directly into dompdf:

    $html = '" />';
    $dompdf->load_html($html);
    

    or

    $dompdf->load_html_file(foo.php);
    

    Or are you loading the processed PHP document:

    $html = '';
    $dompdf->load_html($html);
    

    or

    $dompdf->load_html_file('http://example.com/foo.php');
    

    If the PHP content is not being processed prior to loading it into dompdf then it will not be processed at all. By default (as of 0.6.0) does not process any PHP code in the HTML document. You would have to set DOMPDF_ENABLE_PHP to true.

提交回复
热议问题