java - 我无法使用 Apache FOP 更改我的字体系列

标签 java xsl-fo apache-fop

我正在尝试使用 fop Quick Start Guide从一个简单的 XML 文件打印一个简单的 PDF 文件,它工作正常。但是当我改变 <name>Frank</name><name>امیررضا</name> (将名称更改为其他编码)我得到 ####在我打印的 PDF 中。我通过互联网搜索,找不到任何可行的解决方案。我使用了很多配置文件,这里是我的一些配置文件:

我使用此命令创建 pdf:

fop -c cfg.xml -xml name.xml -xsl name2fo.xsl -pdf name.pdf

当我使用这个命令时,我收到以下警告:

WARNING: xHeight value could not be determined. The font may not work as
Sep 15, 2011 9:15:37 AM org.apache.fop.events.LoggingEventListener proce
WARNING: Glyph "╙" (0x633, afii57427) not available in font "Helvetica".
Sep 15, 2011 9:15:37 AM org.apache.fop.events.LoggingEventListener proce
WARNING: Glyph "╘" (0x634, afii57428) not available in font "Helvetica".

1- name.xml 包含:

<name>امیررضا</name>

2-name2fo.xsl 包含:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:fo="http://www.w3.org/1999/XSL/Format">
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="/">
    <fo:root>
      <fo:layout-master-set>
        <fo:simple-page-master master-name="A4-portrait"
              page-height="29.7cm" page-width="21.0cm" margin="2cm">
          <fo:region-body/>
        </fo:simple-page-master>
      </fo:layout-master-set>
      <fo:page-sequence master-reference="A4-portrait">
        <fo:flow flow-name="xsl-region-body">
          <fo:block>
            Hello, <xsl:value-of select="name"/>!
          </fo:block>
        </fo:flow>
      </fo:page-sequence>
    </fo:root>
  </xsl:template>
</xsl:stylesheet>

3- 尝试了许多不同的配置文件 (cfg.xml)。

3.1:

<fop version="1.0">
<renderers>
    <renderer mime="application/pdf">      
      <fonts>
        <substitutions>
         <substitution>
            <from font-family="Helvetica" />
            <to font-family="SansSerif"/>
         </substitution>
        </substitutions>
        <referenced-fonts>
            <match font-family=".*"/>        
        </referenced-fonts>     
           <!-- register all the fonts found in a directory and all of its sub directories (use with care) -->
        <directory recursive="true">G:\....\fop\fop-1.0\Core14_AFMs</directory>

         <!-- automatically detect operating system installed fonts -->
        <auto-detect/>  
      <font embed-url="C:\WINDOWS\Fonts\times.ttf">
        <font-triplet name="Times New Roman" style="normal" weight="normal"/>
      </font>
      </fonts>
    </renderer>
  </renderers>
</fop>

3.2:

<fop version="1.0">
<renderers>
    <renderer mime="application/pdf">      
      <fonts>
        <substitutions>
         <substitution>
            <from font-family="Helvetica" />
            <to font-family="SansSerif"/>
         </substitution>
        </substitutions>
        <referenced-fonts>
            <match font-family=".*"/>        
        </referenced-fonts>               

         <!-- automatically detect operating system installed fonts -->
        <auto-detect/>  
      </fonts>
    </renderer>
  </renderers>
</fop>

3.3:......

结果输出为:

Hello, #######!

谁能帮我解决这个问题?

最佳答案

在 Apache FOP 1.1 中添加了对使用从右到左脚本编写的语言的支持,例如阿拉伯语和希伯来语以及完整的双向支持。根据这个问题的日期,使用了较旧的 Apache FOP 版本。有关详细信息,请参阅 http://xmlgraphics.apache.org/fop/trunk/complexscripts.html .

关于java - 我无法使用 Apache FOP 更改我的字体系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7426057/

相关文章:

java - Spring 3.1 DefaultHandlerExceptionResolver 覆盖/禁用

java - 为复制的文件生成文件名

java - Barcode4j 不工作(在 Unix 上)

java - 在 : iText, Apache PDFBox 或 FOP 中将这些产品用于 PDF 生成与 Java 给定要求进行比较?

java - Docker 容器阻塞中的 Apache Batik 转码器

xsl-fo - 标题接近编号时的目录格式问题

java - 如何在 Android KitKat (4.4) 中发送彩信?

java - HTML 基本元素不会将上下文附加到来自 JSP 标记文件的头链接

xml - 生成 XSL FO