根据尺寸过滤 picasa 查询

发布于 2024-10-04 10:15:32 字数 404 浏览 4 评论 0原文

我使用 Picasa 作为我网站的图像提供程序。现在,我真的只想得到垂直的图片。所以图片的高度大于长度。我现在这是谷歌要问的一个大问题,但是有可能吗?我认为 imgmax 仅用于 GET 图片的特定尺寸。

所以我的查询是:给我最近 10 张垂直图片。我已经有了这个:

var q = 'http://picasaweb.google.com/data/feed/api/user/defaultuser?kind=photo&max-results=10&alt=json';
$.getJSON(q, 'callback=?', myFunction);

如果不可能做到这一点,我将只获取所有图片并从中获取 10 个垂直方向。 提前致谢。

I am using Picasa as an image provider for my website. Now, I would really like to only get the vertical pictures. So pictures that have more height than length. I now this is a big question for google to ask to, but is there a possibility? I think imgmax is only used to GET a certain size for your pictures.

So my query is: Give me the 10 most recent vertical pictures. I already have this:

var q = 'http://picasaweb.google.com/data/feed/api/user/defaultuser?kind=photo&max-results=10&alt=json';
$.getJSON(q, 'callback=?', myFunction);

If there is no possibility to do this, I will just get ALL pictures and get 10 verticals out of it.
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆梦 2024-10-11 10:15:32

您可以使用他们的部分请求来提取 albumid、photoid、图像的高度和宽度,然后根据您的业务规则提取所需的数据(高度>宽度)。这比提取完整的相册/照片源要高效得多,因为谷歌共享大量数据,这显然需要大量时间才能到达请求的应用程序。

有关详细信息,请参阅 Picasa 开发人员指南的实验部分

You can use their partial requests just to pull albumid, photoid, heights and widths of the images and then pull required data depending on your business rules (height > width). This is much more efficient than pulling complete album/photo feeds as google shares a lot of data which obviously takes a lot of time to reach the requesting application.

More info in the experimental section of the Picasa Developer's Guide.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文