Hi, Are you looking for something like this?
PicasaQuery query = new PicasaQuery(PicasaQuery.CreatePicasaUri(username)); query.Thumbsize = "200"; query.KindParameter = "photo"; Of course you could just specify the full query URI manually. The valid sizes for thumbsize are on the bottom of the table here: http://code.google.com/apis/picasaweb/reference.html#Parameters (Note you can specify multiple thumbsizes if you separate them by commas.) Cheers, -Jeff On Wed, Jan 21, 2009 at 8:31 AM, [email protected] < [email protected]> wrote: > > Hello, > > I've been trying to request for the width and height of thumbnails > through the picasa API but I haven't been able to find either a method > that will allow me to do this or a property that I can modify. > > I found on this discussion group that it is possible to add the > thumbsize parameter at the end of the URL for a photo in order to get > the thumbnail with the specified dimensions. However, I have not been > able to set this correctly in my code when I pass the URI to the query > that allows me to get the photo stream. > > In short, is there some sample code someone could provide that > clarifies how to request the dimensions of a thumbnail when working on > C#? > > Thank you for your help. > > Paoli > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Picasa-Data-API?hl=en -~----------~----~----~----~------~----~------~--~---
