I am making a PDF from an XMl document using XSL-FO. I need to import images using their names, which are inside the XML document.
XML example:
<newAlbums>
<album cover="blaimage.jpg"/>
</newAlbums>
I need to do this with a similar statement:
<fo:external-graphic src="({})/>
What XPath do I need to insert in the src attribute to import the image? Thanks for the help that killed me.
source
share