我正在使用下面显示的 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));
}
}