我自己尝试使用fpdf和php as,
生成Kannada字体的pdf文件require_once('fpdf/fpdf.php');
$pdf = new FPDF();
$pdf->AddFont('Baraha','','baraha.php');
$pdf->AddPage();
$pdf->SetFont('Baraha','',35);
$pdf->Write(10,' cheluva kannaDa nADu');
$pdf->Output();
尝试使用baraha.ttf,tunga.ttf,lohit.ttf等,但每种字体都会混淆输出。下面是上面一行的baraha.ttf字体的输出。如何在卡纳达语中正确输出?
编辑: cheluva kannaDa nADu
的正确卡纳达语句子为ಚೆಲುವಚೆಲುವಕನ್ನಡ。另请为正确的卡纳达语句子建议其他字体。仅供参考,同样混乱的词语出现在tcpdf php库和pdfmake.js
javascript库的情况下。所以任何人都可以建议最好的库(javascript或php)用于pdf生成。