1

I was able to convert korean font(gulimche.ttf) into gulimche.php, gulimche.z, gulimche.ctg.z
And I placed them under /_tcpdf_5.0.002/fonts folder

Below are the codes I used. This code is not printing korean, instead these "������".
What should I do need to fix here or change?
Any help would greatly appreciates!!!!

require_once('C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\dev\html2pdf_v4.03\html2pdf.class.php');

try
{
$html2pdf = new HTML2PDF('P','A4','kr', true, 'UTF-8');

$html2pdf->AddFont('gulimche','','gulimche.php');

$content = '<page style="font-family: GulimChe; font-size: 12pt">
<i>This is the test for Korean Printing.</i><br>
한글 테스트
</page>';

//$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->writeHTML($content, false);
$html2pdf->Output('korean.pdf');

}
catch(HTML2PDF_exception $e) { echo $e; }

2

I guess I'd better looking for other pdf packages for CJK languages printing.....

It is too sad that html2pdf offers all the great features but only works for ISO-8859 type characters.