Example #1
0
 public static string VirtualDirectoryName(DiscretePicasaAlbum picasaAlbum)
 {
     Picasa.Album album = new Picasa.Album {
         AtomEntry = picasaAlbum.Entry
     };
     return(album.Title + " (" + album.Id + ")");
 }
Example #2
0
        public GoogleContent(GooglePhotosService service, DiscretePicasaAlbum picasaAlbum, Picasa.Photo picasaPhoto)
        {
            File = GoogleFileSystem.Instance.File(service, picasaAlbum, picasaPhoto);

            Dimensions = new PhotoDimensions {
                Width  = picasaPhoto.Width,
                Height = picasaPhoto.Height,
            };

            findBestContent(picasaPhoto);
            findTimestamp(picasaPhoto);
            findFilename(service, picasaPhoto);
        }