I want to programmatically change the time zone of a photo.. (e.g. same 
thing user does manually like this http://i.imgur.com/pxYSi9S.png ).  

I used Picasa Web API to get to the photos.

var service = new PicasaService("exampleCo-exampleApp-1");
service.setUserCredentials("uid", "pwd");
AlbumQuery query = new AlbumQuery(PicasaQuery.CreatePicasaUri("default"));

PicasaFeed feed = service.Query(query);
var entry = (PicasaEntry)feed.Entries.SingleOrDefault(f => f.Title.Text == 
"Trip to Italy - ALL");

var ac = new AlbumAccessor(entry);

var photoQuery = new PhotoQuery(PicasaQuery.CreatePicasaUri("default", 
ac.Id));
PicasaFeed photoFeed = service.Query(photoQuery);

PicasaEntry photo = photoFeed.Entries[0];

How do I now get to the TimeZone.  I didn't see any property where I can 
even read it, much less change it.  

Am I missing something simple?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-picasa-data-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to