0

我有一个 RSS XML 新闻文件,其中包含一个项目列表,其中包括一个图像的 URL。我也有一个关联的 XSLT。

问题是图像大小不一致,我想限制图像大小,将它们调整为漂亮的缩略图。

我将如何修改 XSLT 来实现这一点?

XML 示例:

<?xml version="1.0" encoding="UTF-8" ?>
<rss version ="2.0" xmlns:g="http://base.google.com/ns/1.0">
    <channel>
        <title>Company Name</title>
        <description>Company description</description>
        <link>http://www.mycompanyurl.com</link>

        <item>
            <title>News Item Title</title>
            <link>http://www.whateverurl.com/</link>
            <category>Space</category>
            <pubDate>12 April 1961</pubDate>
            <description>Software to reduce your job search to a half hour per day. all major job sites, job boards, classifieds. unemployment paperwork, CRM, interviews, more</description>
            <image>
                <url>~/App_Data/NewsControl/whatever.png</url>
                <title>Whatever1</title>
                <link>javascript:void(0)</link>
            </image>
            <g:id>1</g:id>
            <g:brand>Whatever2</g:brand>
            <g:condition>whatever3</g:condition>
            <g:price>$whatever4</g:price>
            <g:product_type>Whatever5</g:product_type>
        </item>
    </channel>
</rss>

这是相关的 XSLT:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <items>
      <xsl:for-each select="//item">
        <item Name="{position()}" HeaderText="{title}" Text="{description}" NavigateUrl="{position()}" Date="{pubDate}" ImageUrl="{image/url}"/>
      </xsl:for-each>
    </items>
  </xsl:template>
</xsl:stylesheet>

第一个答案的结果

<items>
    <xsl:for-each select="//item">
       <item Name="{position()}" HeaderText="{title}" Text="{description}" NavigateUrl="{position()}" Date="{pubDate}" ImageUrl="/Tools/thumber.php?img={image/url}"/>
    </xsl:for-each>
</items>

我进行了这些更改,在服务器上启用了 PHP(从服务器和本地测试),并看到了 2 个问题: 1. 我没有得到图像,只是没有图像框。

  1. 如果我尝试编辑 ImageUrl 并添加“&W=xxx&H=xxx”,Visual Studio 验证器会抱怨并在 & 上抛出错误。

更新 2 这是 XSLT 中的最新行:http://myserver.com/Tools/thumber.php?img=',image/url)}"/>

XML 中对应的图像部分

<image>
    <url>/Products/Jobfish/Images/Boxshots/Jobfish_DVDCaseCD_ShadowOut.jpg</url>
    <title>Jobfish</title>
    <link>javascript:void(0)</link>

4

1 回答 1

0

XSLT 没有用于调整大小或缩略图的内置函数。您将不得不为此使用外部处理器,例如。通过使用 PHP 缩略图生成器。

然后用指向缩略图生成器的 URL 替换原始图像路径,源是原始图像。

假设 ImageUrl = mediaserver.xyz/ourlogo.jpg 新的 ImageUrl 将变为 myserver.com/thumbnailgenerator.php?src= http://mediaserver.xyz/ourlogo.jpg

请确保您选择一个缓存缩略图库(例如https://code.google.com/p/phpthumbmaker/wiki/ThumberWiki),因为如果您跳过它,这将是一个严重的资源消耗。重新提供这些缩略图时,还要考虑版权问题。

于 2013-02-28T06:53:49.847 回答