The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Google::PicasaWeb::MediaEntry - represents a single Picasa Web photo or video

SYNOPSIS

  my @photos = $album->list_photos;
  for my $photo (@photos) {
      print "Title: ", $photo->title, "\n";
      print "Summary: ", $photo->summary, "\n";
      print "Author: ", $photo->author_name, " (", $photo->author_uri, ")\n";

      $photo->fetch_content( file => 'photo.jpg' );
  }

DESCRIPTION

Represents an individual Picasa Web photo.

ATTRIBUTES

title

This is the title of the photo.

summary

This is the summary description of the photo.

author_name

This is the author/owner of the photo.

author_uri

This is the URL to get to the author's public albums on Picasa Web.

photo

This is a link to the Net::Google::PicasaWeb::Media object that is used to reference the photo itself and its thumbnails.

album_id

This is the ID of the album that the photo belongs to.

METHODS

list_tags

Lists tags used in the albums.

This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.

list_comments

Lists comments used in the albums.

This method takes the "STANDARD LIST OPTIONS" in Net::Google::PicasaWeb.

AUTHOR

Andrew Sterling Hanenkamp, <hanenkamp at cpan.org>

COPYRIGHT & LICENSE

Copyright 2008 Andrew Sterling Hanenkamp

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.