How to set Chinese fonts as embedded fonts in TCPDF?

WBOY
Release: 2023-03-03 10:56:01
Original
3181 people have browsed it

TCPDF generates pdf files, use $pdf->SetFont('stsongstdlight', '', 14);Set the font to Song Dynasty. The generated PDF has non-embedded fonts. If photoshop is not installed on the reader's computer, Garbled characters are displayed, and the generated pdf file cannot be converted into a picture using imagemagic.
I am very satisfied with the style of the font 'stsongstdlight'. I don't need to change to other fonts. How can I embed it into PDF?

Reply content:

TCPDF generates pdf files, use $pdf->SetFont('stsongstdlight', '', 14);Set the font to Song Dynasty. The generated PDF has non-embedded fonts. If photoshop is not installed on the reader's computer, Garbled characters are displayed, and the generated pdf file cannot be converted into a picture using imagemagic.
I am very satisfied with the style of the font 'stsongstdlight'. I don't need to change to other fonts. How can I embed it into PDF?

stsongstdlight really couldn’t do it, so I had to use other fonts in the end. The specific steps are as follows:

<code>        //添加仿宋字体
        $fontFile=APP_ROOT_PATH . 'system/tcpdf/fonts/simfang.php';
        //$fontFile=APP_ROOT_PATH . 'system/tcpdf/fonts/stsongstdlight.php';如果用自带的stsongstdlight字体就不可以
        $pdf->AddFont('simfang', '', $fontFile,FALSE);</code>
Copy after login

If you use simfang font in this way, the font will be embedded.

Recommend another pdf backend solution: wkhtmltopdf

You can first use various template technologies to generate html pages, and then generate pdf.

Assembling pages like tcpdf is cumbersome, error-prone, and simply anti-human.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!