从CKEditor生成PDF的奇怪的焦点

时间:2017-05-11 20:36:07

标签: php html ckeditor tcpdf

我对从CKEditor生成的PDF有疑问。

我在CKEditor中输入了一些文字:

enter image description here

HTML来源:

enter image description here

接下来,此文本保存在DB中。

我的CKEditor配置如下:

enter image description here

此外,上面的文本是从控制器中的DB获取的,PDF文件是使用TCPDF生成的:

public function createRegulationPDF(){
        require_once('TCPDF/tcpdf.php');

        // create new PDF document
        $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

        // set document information
        $pdf->SetCreator(PDF_CREATOR);

        $pdf->SetPrintHeader(false);
        $pdf->SetPrintFooter(false);

        // set default monospaced font
        $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

        // set image scale factor
        $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

        // set font
        $pdf->SetFont('freeserif', '', 10);

        // add a page
        $pdf->AddPage();

        // GET CONTENT FROM DB      
        $html = $this->view->settings['reg_statement'];

        // output the HTML content
        $pdf->writeHTML($html, true, false, true, false, '');
        ....

最后一点,生成PDF:

enter image description here

问题是:这个奇怪的(盒子)选择了什么?

enter image description here

如何避免它?

0 个答案:

没有答案