我使用下面显示的C#代码使用Picasa API从相册中检索缩略图。有人能告诉我如何通过更改代码来检索更大的缩略图吗?
public void getimages (string albumid)
{
PicasaService service = new Google.GData.Photos.PicasaService("test");
PhotoQuery query = new PhotoQuery(PicasaQuery.CreatePicasaUri(userName, albumid));
PicasaFeed feed = service.Query(query);
foreach (PicasaEntry entry in feed.Entries)
{
string title = entry.Title.Text.Substring(0, entry.Title.Text.LastIndexOf("."));
Albumimages.Add(new AlbumImages(title, entry.Media.Thumbnails[0].Url, entry.Media.Content.Url));
}
}
答案 0 :(得分:1)
不了解C#,但Feed网址有一个名为'thumbsize'的参数:
网址示例:https://picasaweb.google.com/data/feed/api/user/?kind = album& thumbsize = 320
您可以在此处查看有效值:https://developers.google.com/picasa-web/docs/1.0/reference#Parameters