I'm making a PDF from an XMl doc using XSL-FO. I need to import images using their names that are inside the XML doc.
Example XML:
<newAlbums>
<album cover="blaimage.jpg"/>
</newAlbums>
I need to do this through a similar statement:
<fo:external-graphic src="({})/>
What XPath do I need to put inside the src attribute to import the image? Thanks for the help this has been killing me.