My code to convert HMTL to PDF using tcpdf.

$html =  '<pre>
          <br/>
          <h3><a href="/node/02" title="View Original Document">aa</a></h3>
          <br/>
          <img width="628" height="674" class="imagecache imagecache-assetimage" title="" alt="" src="http://test/a_image/AssignPage.jpg" />&nbsp</pre>';

    $htm = '<div style="font-size:40px !important;">'.$html.'</div>';
    $pdf->writeHTML($htm, TRUE, TRUE, TRUE, FALSE, '');

Above code prints the following error message:

TCPDF ERROR: [Image] Unable to get image: /path-of-the-image

If HTML does not contains image it is working perfectly.

What to do to resolve this issue ?

Any help will be thankful and grateful...

Thanks in advance..

link|improve this question

63% accept rate
Try this in your address bar "test/a_image/AssignPage.jpg""; is it working ? – Rikesh Shah Sep 9 '11 at 10:56
s. i checked it.. image is there ! – Fero Sep 9 '11 at 11:38
try to print your html...may it will help you... – Rikesh Shah Sep 9 '11 at 11:49
feedback

1 Answer

up vote 1 down vote accepted

Need to provide 777 permissions for cache folder located in tcfdf.

And it works...

thanks...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.