Python实现自动为照片添加日期并分类的方法

Python实现自动为照片添加日期并分类的方法,第1张

概述本文实例讲述了Python实现自动为照片添加日期并分类的方法。分享给大家供大家参考,具体如下:

本文实例讲述了Python实现自动为照片添加日期并分类的方法。分享给大家供大家参考,具体如下:

小时候没怎么照相,所以跟别人说小时候特别帅他们都不信。小外甥女出生了,我给买了个照相机,让她多照相。可惜他舅目前还是个潘浚蛄烁700的潘空障嗷谷幻挥凶远尤掌诘墓δ堋J粤思父鲂∪砑疾缓糜茫蟮耐枷袢砑塾植换嵊谩I砦桓黾扑慊蒲в爰际踝ㄒ档难荒茏粤⒏恕

听说Python有个图形库,不错,在照片上打日期很容易,于是我就下了这个库。对Python不熟,一面看着手册一面写的。完成了下面的小程序,很简单。还不实用,我再修改一下,加上图形界面,并且将Python代码转换成exe,因为我要把程序给我姐用,所以要做到最傻瓜式。

(1)在相片右下角打印日期,格式类似于 2012-12-05 10:23:46

(2)以上面的日期为例,将原文件重命名为20121205102346.jpg,生成的文件命名为20121205102346DATE.jpg,并且放入文件夹20121205中,这样就可以把相片自动分类了。两个相片拍摄时间到秒数就应该不同了,除非是连拍。

代码(事先安装PIL库,http://www.pythonware.com/products/pil/)

import os,sys,shutilfrom PIL import Imagefrom PIL import ImageDrawfrom PIL.Exif@R_419_6807@ import @R_419_6807@from PIL import ImageFont#open image fileif len(sys.argv) < 2:    print "Usage: ",sys.argv[0]," Imagefile"    sys.exit(1)im = Image.open(sys.argv[1])print 'Image size is:',im.size#get the info dictinfo = im._getexif()#info store the information of the image#it stores the info like this: [233:'name',2099:'2012:01:01 10:44:55',...]#the key need to be decoded,#This pIEce of code will extract the time when the photo is takenfor tag,value in info.items():    decoded = @R_419_6807@.get(tag,tag)    if decoded == 'DateTime':        date = value        break#The date time is in this format '2012:01:01 10:44:22',replace the first two ":" with "-",need a writable Listdate_List = []for x in range(0,len(date)):    date_List.append(date[x])date_List[4] = '-'date_List[7] = '-'date = ''.join(date_List) #draw.text expect a string,convert it back to string#the Font size will be 1/15 of the images sizeFont = ImageFont.truetype("FZYTK.TTF",im.size[1] / 15)draw = ImageDraw.Draw(im)stringsize=draw.textsize(date,Font=Font)print 'Text size is:',stringsize#put the text to the right cornerdraw.text((im.size[0]-stringsize[0],im.size[1]-stringsize[1]),date,fill=255,Font=Font)#rename the source photo and the dated photo,eliminate the ':' and '-' and ' 'new_date_List = []for x in range(0,len(date_List)):    if date_List[x] != ':' and date_List[x] != '-' and date_List[x] != ' ':        new_date_List.append(date_List[x])date = ''.join(new_date_List[0:8])time = ''.join(new_date_List[8:])#print date#print timedir_name = ''.join(date)src_filename = ''.join(new_date_List)dst_filename = src_filename + 'DATE'#print dir_name#print src_filename#print dst_filenameif not os.path.isdir(dir_name):    os.makedirs(dir_name)path = dir_name + '/' + dst_filename +'.JPG'#print pathim.save(path)shutil.copy(sys.argv[1],dir_name+'/'+src_filename+'.JPG')

效果图如下:

更多关于Python相关内容感兴趣的读者可查看本站专题:《Python图片 *** 作技巧总结》、《Python数据结构与算法教程》、《Python Socket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串 *** 作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录 *** 作技巧汇总》

希望本文所述对大家Python程序设计有所帮助。

总结

以上是内存溢出为你收集整理的Python实现自动为照片添加日期并分类的方法全部内容,希望文章能够帮你解决Python实现自动为照片添加日期并分类的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1201512.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存