嗨,这是控制器,我在尝试使用cezpdf将图像添加到我的pdf中。任何人都可以帮助我,因为图像没有显示在生成的PDF格式中。
$this->load->library('cezpdf');
$this->cezpdf->ezStartPageNumbers(300,14,10,'','',1);
$this->cezpdf->selectFont('Times-Roman');
$this->cezpdf->ezImage(site_url("./includes/sitaralogo.jpg"));
答案 0 :(得分:0)
您的网址格式错误。
假设基本网址为http://example.com,则site_url()
函数将返回http://example.com/./includes/sitaralogo.jpg。从有限的代码我可以假设使用site_url("/includes/sitaralogo.jpg")
。