XSL-FO中的图像元素

时间:2014-04-30 11:14:00

标签: xml image xslt xsl-fo

我的XML文件:

<subsection>
<para>    
<image href="file:///C:/Users/username/Desktop/rfp_cms0009630en.png" height="486" width="1128"/>
</para>    
</subsection>

我的XSLT for image:

<xsl:template match="image">

    <fo:block text-align="center">                                                                        
        <fo:external-graphic href="{@href}">
            <xsl:if test="@width">
                <xsl:attribute name="content-width">
                    <xsl:value-of select="@width"/>
                </xsl:attribute>
            </xsl:if>
            <xsl:if test="@height">
                <xsl:attribute name="content-height">
                    <xsl:value-of select="@height"/>
                </xsl:attribute>
            </xsl:if>
        </fo:external-graphic>
    </fo:block>
</xsl:template>

如果我使用它,图像不会显示在输出中。

请指导我,样式表是正确的还是我需要修改任何内容?

0 个答案:

没有答案