gpt4 book ai didi

java - 将 FOP 1.1 替换为 FOP 1.0 后,Apache FOP 丢失字形

转载 作者:太空宇宙 更新时间:2023-11-04 06:26:34 24 4
gpt4 key购买 nike

我使用嵌入在 Java 应用程序中的 Apache FOP 1.1 成功地将 XML 转换为 PDF。不幸的是,我被指示降级到 FOP 1.0 以遵守公司许可。因此,我用 1.1 jar 替换了 1.0 jar,并交叉检查了依赖项 jar 的兼容性。一切构建正常,程序运行良好。但是,FOP 1.0 生成的 PDF 仅包含每个字符的“#”,并出现错误:

Glyph "M" (0x4d, M) not available in font "Helvetica".

(这里,“M”仅用作示例。但它对文件中的每个字符都显示此错误。)我在 Apache 站点上查找了此错误,其中指出:

If no glyph can be found for a given character, FOP will issue a warning and use the glpyh for "#" (if available) instead.

我觉得这很奇怪,因为这段代码对于 FOP 1.1 工作得很好,而且我使用的是基本的字母数字字符。 (即,即使“Hello World”也无法正确打印”)。我的转换代码基于 Apache 站点的示例,而且相当简单

//Constructs a fop with desired output format and user settings
Fop fop = fopFactory.newFop("application/pdf", agent, out);

//Setup JAXP using identity transformer direct from XSLT:FO output template
TransformerFactory factory = TransformerFactory.newInstance();
Transformer transformer = factory.newTransformer(new StreamSource(new StringReader(xslfoReceiptLayout))); // identity transformer

//Setup input stream from XML string
Source src = new StreamSource(new StringReader(receiptXml));

//Resulting SAX events msut be piped through to FOP
Result res = new SAXResult(fop.getDefaultHandler());

//Start XSLT transformation and FOP processing
transformer.transform(src, res);

logger.debug("Finished XML to PDF conversion");

其中xslfoReceiptLayout是包含我的xslfo数据的字符串。我尝试将此数据简化为 W3 站点的示例,达到相同的效果:

<?xml version="1.0" encoding="UTF-8"?>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

<fo:layout-master-set>
<fo:simple-page-master master-name="A4">
<fo:region-body />
</fo:simple-page-master>
</fo:layout-master-set>

<fo:page-sequence master-reference="A4">
<fo:flow flow-name="xsl-region-body">
<fo:block>Hello W3Schools</fo:block>
</fo:flow>
</fo:page-sequence>

</fo:root>

我尝试过的事情:

  • 使用配置文件手动配置字体以自动检测系统字体
  • 将字体基目录设置为系统字体目录
  • 为 xsl:fo 中的 font-family 值设置不同的字体

我不清楚我错过了什么。我一直在 Apache 网站和 google 上搜索与此相关的 FOP 1.0 和 FOP 1.1 之间的更改,但无济于事。大家有什么想法吗?

最佳答案

我从我们公司的 Assets 管理器站点找到了 FOP 1.0 jar 的预编译版本,它似乎已经解决了问题。不确定我从 Apache 站点获取的源代码构建的 1.0 版本出了问题。我最好的猜测是预编译版本包含 Apache 源代码中没有的自包含字体。

关于java - 将 FOP 1.1 替换为 FOP 1.0 后,Apache FOP 丢失字形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26718956/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com