如何在TCPDF中显示oriya(印度)语言

时间:2019-02-12 09:40:13

标签: php tcpdf

我正在尝试使用某些国家语言生成pdf。而且生成我没有问题。

我的问题是我无法使用Oriya语言生成pdf。

我尝试使用DejaVuSans和其他一些字体,但没有运气,我得到了一些其他格式的字体。

这是我的代码。

HTML

printKeyword

PDF代码

$html = '<html>
                        <head>
                        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                        <style>
                            body { font-family: DejaVu Sans, sans-serif !important; }                            
                        </style>
                        <title>Lightning Bulletins</title>
                        </head>
                        <body>
                        <table width="100%" valign="middle">
                            <tr>
                                <td width="5%"><img src="' . base_url() . 'stylesheet/images/Logo_Odisha2.png" border="0" /></td>
                                <td colspan="2" width="90%" align="center" valign="middle"><font style="font-family:Times New Roman; font-size:18px">
                                    ODISHA STATE DISASTER MANAGEMENT AUTHORITY </font>
                                </td>
                                <td width="5%" ></td>                         
                            </tr>

                            <tr>
                                <td colspan="4" width="100%" align="center" valign="middle" style="font-family:Times New Roman; font-size:12px" >Rajiv Bhawan, Unit 5, Bhubaneswar</td>
                            </tr>

                            <tr><td align="center" colspan="4" style="font-size:2px; border-bottom:#000 5px double; ">&nbsp;</td></tr>

                            <tr><td align="center" colspan="4" style="font-size:4px; ">&nbsp;</td></tr>

                            <tr><td align="center" colspan="4" valign="middle"><font style="font-family: Impact; font-weight:bold; serif; font-size: 20px; font-weight: 500; line-height: 26.4px;">Lightning Bulletins for - [ ' . $districts . ' ]</font></td></tr>

                            <tr><td align="center" colspan="4" style="font-size:2px; border-bottom:#000 5px double; ">&nbsp;</td></tr> 
                                <tr valign="middle">
                            </tr> 

                            <tr><td></td></tr>

                            <tr>
                                <td colspan="5" align="center" style="font-size:10px;">
                                <h2>Dos and Donts</h2>'.$dos_dont.'</td>
                            </tr>

                            <tr>
                                <td align="center" colspan="4" style="border-left: 1px thin #CCC;border-right: 1px thin #CCC;font-size:4px;">&nbsp;</td>
                            </tr>
                            <tr>
                                <td colspan="4" style="font-size:10px;border-left: 1px thin #CCC;border-right: 1px thin #CCC;font-size:4px;border-bottom: 1px thin #CCC;font-size:4px;">&nbsp;</td>
                            </tr>
                            <tr>
                                <td align="center" colspan="4" style="font-size:7px;">&nbsp;Powered by <font color="#3399FF"> Regional Integrated Multi-Hazard Early Warning System (RIMES)</font>
                                </td>
                            </tr>
                        </table>
                        </body>
                    </html>';

对此的任何帮助都非常感谢。

0 个答案:

没有答案