[Home] [By Thread] [By Date] [Recent Entries]
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 >= $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 < $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
|

Cart



