Photo Management Python Application

2006-02-18 Thread Bill
Does anyone know of a Python program that will re-name digital photo 
files in a date-time format based on the date stamp of the file?



-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Photo Management Python Application

2006-02-18 Thread Peter Hansen
Bill wrote:
 Does anyone know of a Python program that will re-name digital photo 
 files in a date-time format based on the date stamp of the file?

Not entirely sure since I can't parse the above sentence fully.

Could you please reread it and consider rephrasing it?  It really 
doesn't look like it makes sense as written.  (renaming _in_ a date-time 
format?  a format _based on_ the date stamp of a file?)

-Peter

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Photo Management Python Application

2006-02-18 Thread [EMAIL PROTECTED]
You can play around with Pil, http://effbot.org/imagingbook/

I found this as being the date for a picture

 import Image
 i = Image.open('/media/hda8/Pictures/Elvis/dscn0178.jpg')
 i._getexif()[36867]
'2006:02:18 14:07:55'


-- 
http://mail.python.org/mailman/listinfo/python-list