Installtion
- download library
- extract it
- copy exif.py to Lib folder
- Some API demo source code can been found in comments sectio in exif.py
Demo
import EXIF # extract thumbnail in Exif and save it f = open("c:\\p2.jpg",'rb') tags = EXIF.process_file(f) # save the thumbnail into a jpg format file f = open("c:\\a.jpg",'wb') f.write(tags["JPEGThumbnail"]) f.close()
0 comments:
Post a Comment