Update of /cvsroot/gtkpod/libgpod/bindings/python/examples
In directory 
sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30122/bindings/python/examples

Added Files:
        save_photos.py 
Log Message:
Add some PhotoDB reading features, thanks to John Carr for prompting.

--- NEW FILE: save_photos.py ---
#!/usr/bin/python

##  Copyright (C) 2007 Nick Piper <nick-gtkpod at nickpiper co uk>
##  Part of the gtkpod project.
 
##  URL: http://www.gtkpod.org/
##  URL: http://gtkpod.sourceforge.net/

##  The code contained in this file is free software; you can redistribute
##  it and/or modify it under the terms of the GNU Lesser General Public
##  License as published by the Free Software Foundation; either version
##  2.1 of the License, or (at your option) any later version.

##  This file is distributed in the hope that it will be useful,
##  but WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
##  Lesser General Public License for more details.

##  You should have received a copy of the GNU Lesser General Public
##  License along with this code; if not, write to the Free Software
##  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

# this file is just a little example to see how you could read photos

import gpod

photodb = gpod.PhotoDatabase("/mnt/ipod")

print photodb
for album in photodb.PhotoAlbums:
    print " ", album
    for photo in album:
        print "  ", photo
        for thumbnail, n in zip(photo.thumbnails,
                                range(0,len(photo.thumbnails))):
            print "   ", thumbnail
            thumbnail.save_image("/tmp/%d-%d.png" % (photo['id'],n))

photodb.close()


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to