I am using TCPDF Library Version: 5.9.011. I am trying to execute HTML layout as PDF. For which I tried with example provide with the site

$html = '<h1>HTML Example</h1>
<h2>List</h2>
Some special characters: &lt; € &euro; &#8364; &amp; è &egrave; &copy; &gt; \\slash \\\\double-slash \\\\\\triple-slash
';
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');

//Close and output PDF document
$pdf->Output('example_006.pdf', 'I');

Apparently found that generated PDF only default header and footer with middle content blank.

However if I remove special characters like:

$html = '<h1>HTML Example</h1>
<h2>List</h2>
Some special characters:
';

PDF gets its middle content as specified in $html

Am I missing something or doing something wrong?

Please help me to rectify.

link|improve this question

78% accept rate
feedback

2 Answers

you need to change constructor, Set UTF-8 flase and change new charshet like below:

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, false, 'ISO-8859-1', false);

In above example, I set encoding ISO-8859-1 instead of UTF-8 and I change true to false.

Krish

link|improve this answer
set the $unicode parameter on TCPDF constructor to false and the $encoding parameter to 'ISO-8859-1' or other character map – Krishna Sunuwar May 26 '11 at 7:17
feedback

You are using latest version of TCPDF.Follow steps mentioned here. It should work

link|improve this answer
I am following same steps only. But no luck. – Asif Mulla Nov 10 '10 at 7:31
feedback

Your Answer

 
or
required, but never shown

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