3

我使用 Picasa RSS 提要没问题,但我无法获取我上传的原始大尺寸图片。通过 Picasa 上传时,我特意选择上传“原始尺寸”(相当大)。提要 URL 仅指向较小的图像。如何从 picasa 获取原始大图?

我可以通过检查 Picasa 网站上的图像来破解 URL,所以这是我想要的照片的一个示例:https : //lh3.googleusercontent.com/-yam9QV2NG40/ULKIMTKvQzI/AAAAAAAAAA4/ownr930MvGg/s2048/Blasket% 2520驴.jpg

我知道您可以使用 URL 中的 s(上面的粗体位)更改上面的 URL。

所以这是我获取和使用提要的coldfusion代码:

<cffeed name="picassa_RSS"source="https://picasaweb.google.com/data/feed/base/user/104080781603408027307/albumid/5817402728494564577?alt=rss&kind=photo&hl=en_US">

<cfoutput>
<!--- Loop through picasa RSS feed and output thumbnails --->
<cfloop array="#picassa_RSS.item#" index="i">
<img alt="img" src="#i.group.thumbnail[2].url#" class="picture">
</cfloop>
</cfoutput>

有任何想法吗?

谢谢你。

4

2 回答 2

4

好的,我自己找到了答案。在此处查看 imgmax 参数: https ://developers.google.com/picasa-web/docs/2.0/reference#Parameters

您基本上将&imgmax=1600添加到提要 URL 的末尾以获得尽可能大的大小。

于 2012-12-02T19:23:11.593 回答
1

将 &imgmax=2048 添加到 url 对我有用,因为我的图像是 1920 宽度。

于 2014-04-15T18:03:09.500 回答