带参数的外部图形的相对路径

时间:2012-01-18 09:58:44

标签: xml xslt xsl-fo apache-fop

我在构建外部图形链接时遇到问题。例如,在我的xml中,我有这条路径:/images/1.png

现在我想在for-each中打印xml中的所有图像。但我不知道如何使用当前节点的值构造以下内容:

url('resources/pdf/images/1.png')

resources/pdf部分不在xml中。

1 个答案:

答案 0 :(得分:0)

将'resources / pdf'放在参数(例如Path)中并使用concat方法:

  <fo:external-graphic  src="url({$Path}/{../../PublicationElement/Document/DocumentURL})" scaling="non-uniform"/>