我必须从 servlet 添加图像,然后将其添加到 xsl 中。
这个 servlet 有一个 getUrl 方法,它返回一个 base64 url。
我试过这个,但不正确:
爪哇:
Transformer _Transformer = tFactory.newTransformer(style);
tFactory.setAttribute("imageChart", "ChartCreator?chartConfig=" + ChartPdfDecoder.getURL(chartConfig));
xsl:
<fo:block margin-left="1cm" margin-top="0.2cm" height="265px" width="310px">
<fo:external-graphic src="url('$imageChart')"/>
</fo:block>
谁能帮我?
谢谢