印地语语言在tcpdf上无法正确显示

时间:2012-11-23 06:31:31

标签: php utf-8 tcpdf hindi

我创建了以下代码,用于在tcpdf中使用arial unicode字体显示hindi文本

$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);


//set some language-dependent strings
$pdf->setLanguageArray($l);

// ---------------------------------------------------------

$pdf->addTTFfont('fonts/ARIALUNI.TTF', 'TrueTypeUnicode', '', 32);
$pdf->SetFont('arialuni', '', 10,'false');

$txt = 'hindi text with arial unicode समृध्दि';

$pdf->Write(0, $txt, '', 0, 'L', true, 0, false, false, 0);

// ---------------------------------------------------------

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

但是没有正确显示

但在php中显示正确的文字。

请告诉我是否有任何错误。

4 个答案:

答案 0 :(得分:1)

尝试mPDF作为替代方案。它非常好用且易于使用。 Here is an example它如何显示印地语

答案 1 :(得分:1)

我会尝试mpdf1.com 我之前尝试过它,它与印地文合作

答案 2 :(得分:0)

字体可能有问题。

尝试替换以下行并尝试使用其他字体:

$pdf->addTTFfont('fonts/ARIALUNI.TTF', 'TrueTypeUnicode', '', 32);
$pdf->SetFont('arialuni', '', 10,'false');

答案 3 :(得分:-1)

试试这个,它有效。

$ mpdf-> SetAutoFont();