我为sp_sign获取的值(如下所示)我想将它用作fo:外部图形的src。我尝试了很多东西仍然没有运气请帮忙。
<xsl:for-each select="//**sp_sign**">
<xsl:value-of select="**@value**" />
//
<xsl:variable name="src" select="//sp_sign" />
<fo:external-graphic baseline-shift="super" **src="${src}"** content-height="80px" content-width="80px"/>
</fo:block>
提前致谢 问候, Manik Vashisht
答案 0 :(得分:3)
我通常使用xsl:attribute标记
来提供src属性<fo:external-graphic>
<xsl:attribute name="src">
<xsl:value-of select="$src" />
</xsl:attribute>
</fo:external-graphic>
src应如下所示:url('path / to / image')
答案 1 :(得分:0)
通常,您也可以像这样添加图像文件。 其中LOGO是XML值,使用apache fop 2.1
<xsl:variable name="logo" select="LOGO"/>
<fo:block>
<fo:external-graphic src="file:///{$logo}" />
</fo:block>
答案 2 :(得分:0)
只需在括号之间添加变量!
<xsl:variable name="logo" select="LOGO"/>
<fo:block>
<fo:external-graphic src="{$logo}" />
</fo:block>
结果将是:
<fo:external-graphic src="https://ibb.co/kqSQ9z3"/>