xsl-list
[Top] [All Lists]

Re: XSL-FO & Images

2005-04-18 09:25:35
These are the two examples:

The XHTML version uses the <img element

<xsl:template match="image">
<fo:block>
<img>
<xsl:attribute name="src">
<xsl:value-of select="."/>
</xsl:attribute>
</img>
</fo:block>
</xsl:template>

The XSL-FO version uses the <fo:external-graphic  element

<xsl:template match="image">
<fo:block>
<fo:external-graphic src="url(test.jpg)"/>
</fo:block>
</xsl:template>

The 1st version is scalable. The second is not. When looking at your solution it seems I was simply using the incorect XPath expression in the <fo:external-graphic element. I was using the actual file name of the image instead of "url({.})"

Am I on the righ track?

From: David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] XSL-FO & Images
Date: Mon, 18 Apr 2005 17:13:38 +0100

  Are there any ways of using the "<fo:external-graphic>" tag in a scalable
manner? i.e. run through my XML document, match all the "<image>" tags and
  populate a table?


yes of course, XSLT doesn't know anything about FO (or any other XML
format in the result tree) Your question is very general, just asking is
it possible to find all elements of some sort in an input tree and
generate an output element for each one. That in essence is just exactly
what XSLT does, so it's hard to know where to give specific advice unless
you can narrow down your problem.

<xsl:template match="/">
<fo:table>
<xsl:apply-templates select="//image"/>
</fo:table>
</xsl:template>

<xsl:template match="image">
 <fo:table-row>
 <fo:table-cell
 <fo:external-graphic src="url({.})/>
 </fo:table-cell
 </fo:table-row>
</xsl:template>

does smoething related to your question.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

_________________________________________________________________
We've added lots of new goodies to MSN South Africa - visit us today! http://www.msn.co.za/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>