I am currently following this tutorial in Codeigniter and was wondering how I can add
an image to a pdf, the manual on ezpdf’s page doesn’t specifically state on what kind of path I need to input, I tried everything and the PDF just would not load or show an image.
For your reference I am using the code below to add an image.
$image = base_url()."system/application/images/logo.jpg";
$this->cezpdf->ezImage( $image );
I ended up using fpdf with codeigniter and here’s how I added the image