xsl-list
[Top] [All Lists]

RE: [xsl] Fwd: xslt:image resizing

2009-03-12 06:16:54

Please show sample input and desired output of your transformation (ideally,
a complete example that people can run for themselves, but small enough to
be easily digested).

If something "doesn't work", then tell us what the symptoms are - error
message? wrong output? machine catches fire?

Also, tell us whether you are using XSLT 1.0 or 2.0.

For all we can tell, it's as simple as a spelling mistake (@heigth for
@height). But that's pure guesswork.

Michael Kay
http://www.saxonica.com/ 

-----Original Message-----
From: Plew [mailto:plew(_at_)gmx(_dot_)de] 
Sent: 12 March 2009 01:08
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Fwd: xslt:image resizing

Hello

im looking for something like image resizeing, i tried with 
this peace of code, but it wont work?


<xsl:template match="*[local-name()='img']">
   <br></br>
   <img>
       <xsl:attribute name="src">
           <xsl:copy-of select="resolve-uri(@src,$url)"/>
       </xsl:attribute>              <xsl:choose>                  
<xsl:when test="@width > $width and @heigth &gt;= $height">
               <xsl:attribute name="width">
                   <xsl:value-of select="($width div @width) 
* @width" />px
               </xsl:attribute>
               <xsl:attribute name="height">
                   <xsl:value-of select="($width div @width) 
* @heigth" 
/>px
               </xsl:attribute>
           </xsl:when>                      <xsl:when test="@height > 
$height and @width &lt; $height">
               <xsl:attribute name="width">
                   <xsl:value-of select="($width div @height) 
* @width" />
               </xsl:attribute>
               <xsl:attribute name="height">
                   <xsl:value-of select="($height div @height) * 
@height" />
               </xsl:attribute>
           </xsl:when>
       </xsl:choose>
   </img>
</xsl:template>

greeting stefan

--~------------------------------------------------------------------
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>
--~--



--~------------------------------------------------------------------
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>