fop 1.1 ExternalGraphicException

时间:2014-12-19 13:57:20

标签: java xsl-fo apache-fop

美好的一天。 我有下一个问题。 我们使用fop 1.0,但之后我们升级到v 1.1。现在我遇到了在rtf文件中显示图像的问题。

错误如下:

  

org.apache.fop.render.rtf.rtflib.rtfdoc.RtfExternalGraphic $ ExternalGraphicException   标签不支持do?message = 83720404 - 图像类型。

这是我模板的一部分:

<xsl:template match="barcodeURL">
   <xsl:variable  name="bar"  select="."/>
    <fo:external-graphic text-align="center" display-align="center" width="30mm" height="20mm" content-height="40pt" src="url('{$bar}.jpeg')"/>
</xsl:template>

这是java代码的一部分:

if (isBarcodePrinting) {
    contextUrl = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
            + WebContexts.common.getValue() + "/generateBarCode.do?message=";
}

那么,我需要以另一种方式接收URL吗? 感谢。

0 个答案:

没有答案