I can't show Chinese when .fo to .pdf
<?xml version="1.0" encoding="big5"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master
margin-right="2.0cm"
margin-left="2.0cm"
margin-bottom="2.0cm"
margin-top="2.0cm"
page-width="21.0cm"
page-height="29.7cm"
master-name="first">
<fo:region-body margin-top="1.0cm" margin-bottom="1.5cm"/>
<fo:region-before extent="1.0cm"/>
<fo:region-after extent="1.5cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="first">
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="50pt" space-after.optimum="20pt" text-align="left">
Input Chinese here , but I can't see Chinese !
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
This is a file.fo , I want change to file.pdf , and it finished to file.pdf .
If that text is English ,that file.pdf is OK.
but if that text is Chinese ,that file.pdf will not show right Chinese.
Please tell me , what should I do .
|