7

我为 sp_sign 获得的值(如下所示)我想将其用作 fo:external graphics 的 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

4

3 回答 3

8

我通常使用 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')

于 2013-02-15T13:32:09.060 回答
1

通常,您也可以像这样添加图像文件。其中LOGO是XML值,使用apache fop 2.1

<xsl:variable name="logo" select="LOGO"/>
<fo:block>
  <fo:external-graphic src="file:///{$logo}" />
</fo:block>
于 2017-02-10T20:42:15.820 回答
0

只需在大括号之间添加变量!

<xsl:variable name="logo" select="LOGO"/>
<fo:block>
  <fo:external-graphic src="{$logo}" />
</fo:block>

结果将是:

<fo:external-graphic src="https://ibb.co/kqSQ9z3"/>
于 2020-05-28T14:26:32.333 回答