Hi this is controller where in i am trying to add an image to my pdf using cezpdf . Can anyone please help me out as the image is not getting displayed in the pdf that is generated.
$this->load->library('cezpdf');
$this->cezpdf->ezStartPageNumbers(300,14,10,'','',1);
$this->cezpdf->selectFont('Times-Roman');
$this->cezpdf->ezImage(site_url("./includes/sitaralogo.jpg"));
Your URL is malformed.
Assuming the base url is http://example.com the site_url()
function will return http://example.com/./includes/sitaralogo.jpg. From the limited code I would assume using site_url("/includes/sitaralogo.jpg")
would work.