我正在使用HTML2PDF库进行codeigniter
请参阅:https://github.com/aiwmedia/HTML2PDF-CI 我的问题是我无法使用标签加载图像。它不是图像,而是始终显示alt属性。试图给出完整的路径和相对路径。
查看:
<img src="<?php echo base_url(); ?>/uploads/pdf_images/1.jpg" alt="<?php echo base_url(); ?>uploads/pdf_images/1.jpg"/>
控制器:
$this->load->library('html2pdf');
$this->html2pdf->folder(APPPATH."third_party/samples/");
$file_name=$this->random_string(7);
$this->html2pdf->filename($file_name.'.pdf');
$this->html2pdf->paper('a4', 'portrait');
//$this->html2pdf->html($this->load->view('pdfcouple',$data,true));
if($user_details_arr[0]->is_married)
{
$content=$this->load->view('pdfcouple', $data, true);
}
$this->html2pdf->html($content);
$this->html2pdf->create('save');
答案 0 :(得分:1)
我通过编辑dompdf_config.custom.inc.php
解决了这个问题取消注释
define("DOMPDF_ENABLE_REMOTE", true);
现在图片正在pdf中加载。感谢您的支持。