(已解决)我不知道如何用实际时间和日期的时间戳来保存我的最终jpg。 我可以使用下面的代码成功保存我的相机jpg。
#!/usr/bin/python
import Image
import ImageChops
import sys
import glob
import os
import datetime
# get the date to add to caption and file name
datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
try:
dir_images = sys.argv[1]
dir_results = sys.argv[2]
except IndexError:
print "No directories specified."
images = []
os.chdir('/media/SamsungDisk3/uhvo_replacement_test/images' )
for files in glob.glob("*.jpg"):
images.append(files)
if len(images) is 2:
print images[0]
background = Image.open(images[0])
overlay = Image.open(images[1])
print images[1]
background = background.convert("RGBA")
overlay = overlay.convert("RGBA")
filename = "/home/tim/Desktop/final_stacked_images/final_result_" + datetime.datetime.now().strftime("%d_%m_%Y_%H:%M:%S") + ".jpg"
ImageChops.lighter(background, overlay).save(filename)
我正在使用Ubuntu 12.04 64位.... 谢谢。
答案 0 :(得分:1)
ImageChops.lighter(background, overlay).save('/home/tim/Desktop/final_stacked_images/final/result_{}.jpg'.format(datetime.datetime.now().strftime('%s'))
...应该排序你。如果没有,请留下错误评论,我会进一步研究。