Home > Java > javaTutorial > body text

How to Display Chinese Characters in PDF Documents Using Apache FOP with SimSun Font?

Patricia Arquette
Release: 2024-10-26 22:52:31
Original
530 people have browsed it

How to Display Chinese Characters in PDF Documents Using Apache FOP with SimSun Font?

Apache FOP Chinese Character Display with SimSun

In Apache FOP, displaying complex Chinese characters in a PDF document requires a three-step process to ensure correct font usage and proper glyph rendering.

Step 1: Set Font-Family in FO File

Indicate the desired font family in the FO file using the font-family property. For example, to use the SimSun font:

<code class="xml"><fo:block font-family="SimSun">博洛尼亚大学中国学生的毕业论文</fo:block></code>
Copy after login

Step 2: Configure Font Mapping in FOP's Configuration File

In fop.xconf (located in FOP's 'conf' folder), add font mapping entries under /fop/renderers/renderer[@mime = 'application/pdf']/fonts/:

<code class="xml"><font kerning="yes" embed-url="/path/to/SimSun.ttf">
  <font-triplet name="SimSun" style="normal" weight="normal"/>
</font></code>
Copy after login

Step 3: Instruct FOP to Use Configuration File

Specify the configuration file path when calling FOP from the command line:

$ fop -c /path/to/fop.xconf input.fo input.pdf
Copy after login

Or in Java code:

<code class="java">fopFactory.setUserConfig(new File("/path/to/fop.xconf"));</code>
Copy after login

Once all steps are complete, rerun FOP to generate a PDF document with correct Chinese character display.

The above is the detailed content of How to Display Chinese Characters in PDF Documents Using Apache FOP with SimSun Font?. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Articles by Author
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!