小时候没怎么照相,所以跟别人说小时候特别帅他们都不信。小外甥女出生了,我给买了个照相机,让她多照相。可惜他舅目前还是个屌丝,买了个700的屌丝照相机,竟然没有自动加日期的功能。试了几个小软件,都不好用,大的图像软件咱又不会用。身为一个计算机科学与技术专业的学生,只能自立更生了。

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

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

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

代码

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

 
  
  1. import os,sys,shutil 
  2. from PIL import Image 
  3. from PIL import ImageDraw 
  4. from PIL.ExifTags import TAGS 
  5. from PIL import ImageFont 
  6.  
  7. #open p_w_picpath file 
  8. if len(sys.argv) < 2
  9.         print "Usage: ",sys.argv[0]," ImageFile" 
  10.         sys.exit(1
  11. im = Image.open(sys.argv[1]) 
  12. print 'Image size is:',im.size 
  13. #get the info dict 
  14. info = im._getexif() 
  15.  
  16. #info store the information of the p_w_picpath 
  17. #it stores the info like this: [233:'name',2099:'2012:01:01 10:44:55',...] 
  18. #the key need to be decoded, 
  19. #This piece of code will extract the time when the photo is taken 
  20. for tag,value in info.items(): 
  21.         decoded = TAGS.get(tag,tag) 
  22.         if decoded == 'DateTime'
  23.                 date = value 
  24.                 break 
  25. #The date time is in this format '2012:01:01 10:44:22', replace the first two ":" with "-", need a writable list 
  26. date_list = [] 
  27. for x in range(0,len(date)): 
  28.         date_list.append(date[x]) 
  29. date_list[4] = '-' 
  30. date_list[7] = '-' 
  31. date = ''.join(date_list) #draw.text expect a string, convert it back to string 
  32.  
  33. #the font size will be 1/15 of the p_w_picpaths size 
  34. font = ImageFont.truetype("FZYTK.TTF",im.size[1] / 15
  35. draw = ImageDraw.Draw(im) 
  36. stringsize=draw.textsize(date,font=font) 
  37. print 'Text size is:',stringsize 
  38. #put the text to the right corner 
  39. draw.text((im.size[0]-stringsize[0],im.size[1]-stringsize[1]),date,fill=255,font=font) 
  40.  
  41. #rename the source photo and the dated photo, eliminate the ':' and '-' and ' ' 
  42. new_date_list = [] 
  43. for x in range(0,len(date_list)): 
  44.         if date_list[x] != ':' and date_list[x] != '-' and date_list[x] != ' '
  45.                 new_date_list.append(date_list[x]) 
  46.  
  47. date = ''.join(new_date_list[0:8]) 
  48. time = ''.join(new_date_list[8:]) 
  49. #print date 
  50. #print time 
  51. dir_name = ''.join(date) 
  52. src_filename = ''.join(new_date_list) 
  53. dst_filename = src_filename + 'DATE' 
  54. #print dir_name 
  55. #print src_filename 
  56. #print dst_filename 
  57. if not os.path.isdir(dir_name): 
  58.         os.makedirs(dir_name) 
  59. path = dir_name + '/' + dst_filename +'.JPG' 
  60.  
  61. #print path 
  62. im.save(path) 
  63. shutil.copy(sys.argv[1],dir_name+'/'+src_filename+'.JPG'

效果