1

我正在开发一个报告应用程序,并dompdf用于创建 pdf 报告。我想将图表加载到 pdf 结果中,但没有结果。但是当我在浏览器中查看时,它显示了我的预期结果,但是当我保存为 pdf 时它没有加载图表.. 这是我创建的函数

function pdf_create($html, $filename, $paper, $orientation, $stream=TRUE)
        {
            require_once("dompdf/dompdf_config.inc.php");
            spl_autoload_register('DOMPDF_autoload');

            $dompdf = new DOMPDF();
            $dompdf->set_paper($paper,$orientation);
            $dompdf->load_html($html);
            $dompdf->render();
            if ($stream) {
            $dompdf->stream($filename.".pdf");
            } else {
            $CI =& get_instance();
            $CI->load->helper("file");
            write_file($filename, $dompdf->output());
            }
        }
4

1 回答 1

-1

使用 MPDF。它非常适合从 html 内容创建 Pdf 文件。

http://www.mpdf1.com/mpdf/index.php

于 2013-07-05T06:15:46.603 回答