spipu / html2pdf

OFFICIAL PROJECT | HTML to PDF converter written in PHP
http://html2pdf.fr/en/default
Open Software License 3.0
1.68k stars 751 forks source link

Chinese characters not displaying in page_header and page_footer #502

Open robertoqs opened 5 years ago

robertoqs commented 5 years ago

Hi Everybody, i need to print pdf with Chinese characters. I added below font and chinese text is printed correctly in the body. However, I'm not able to display print in chinese inside page_header and page_footer. text inside these tags are displaying like "????"

$html2pdf->setDefaultFont('stsongstdlight');

Is there a way to print in chinese text inside page_header and page_footer ?

JW2006778 commented 4 years ago

I fixed this: just modify the table's td cell style by adding "font-family: 'Microsoft Yahei'". Wish it helps you.

borgzhong commented 1 year ago

I fixed this: just modify the table's td cell style by adding "font-family: 'Microsoft Yahei'". Wish it helps you.

Thank you.