codeigniter和tcpdf返回空白页面

时间:2016-09-11 08:34:38

标签: php codeigniter tcpdf

我想在codeIgniter中将页面导出为PDF。我设法按照以下说明安装TCPDF库:TCPDF Integration现在我的控制器看起来像:

class Mycontroller extends CI_Controller {

    public function __construct(){

            parent::__construct();
            $this->load->library("Pdf");
    }

    //make pdf
    public function pdf(){

        $pdf = new Pdf('P', 'mm', 'A4', true, 'UTF-8', false);
        $pdf->SetCreator(PDF_CREATOR);
        // Add a page
        $pdf->AddPage();
        $html = "<h1>Test Page</h1>";
        $pdf->writeHTML($html, true, false, true, false, '');
        $pdf->Output('output.pdf', 'I');
    }
}

然后,我在另一个页面中有一个链接:

<td><a href="<?php echo base_url(); ?>index.php/myController/pdf">Export As Pdf</a></td>

当我点击它时,我得到一个空白的pdf。页面的内容不存在。

非常感谢任何帮助。谢谢!

0 个答案:

没有答案