我正在使用TCPDF庫版本:5.9.011。我試圖執行PDF格式的HTML佈局。對於我與例如試圖與site帶特殊字符的TCPDF HTML顯示空的PDF文件
$html = '<h1>HTML Example</h1>
<h2>List</h2>
Some special characters: < € € € & è è © > \\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');
顯然發現生成的PDF只有默認的頁眉和頁腳與中間空白的內容提供。
但是,如果我刪除特殊字符,如:在$html
我只遵循相同的步驟。但沒有運氣。 – 2010-11-10 07:31:13
鏈接現已停止。 – beerwin 2012-10-26 12:03:02
@ beerwin http://www.tcpdf.org/examples/example_006.phps – NullPointerException 2013-01-30 15:24:26