Genret pdf并在div porstion中显示输出

时间:2018-01-26 11:22:43

标签: php codeigniter

我在代码点火器中创建PDF并在加载此库后创建PDF库并创建一个PDF PDF已成功创建并在我的完整页面中打开。但我跳,我会在500乘500分部显示这个PDF

控制器:

class Print_pdf extends CI_Controller {

    function __construct() {

        parent::__construct();

        $this->load->library('pdf');
        $pdf = $this->pdf->load();
    }


    function index() {
        $this->load->view("report");        
    }
}

查看文件:

$this->load->library('pdf');
$pdf = $this->pdf->load();
$pdf->WriteHTML("<h1>hello</>");            

echo "<div id=d1  class=dd style='height:500px;width:500px;overflow:scoll;background:lime;color:red;'>";       

$pdf->Output();

echo "</div>";

1 个答案:

答案 0 :(得分:1)

您可以尝试使用iframe:

<iframe src="http://docs.google.com/gview?url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true" style="width:500px; height:500px;" frameborder="0"></iframe>

以下是&#34;嵌入式Google文档查看器的使用示例&#34;: https://googlesystem.blogspot.de/2009/09/embeddable-google-document-viewer.html