import Image
for infile in imgFiles:
outfile = '%sresize.jpg'%infile[:infile.find('.')]
if infile != outfile:
try:
im = Image.open(infile)
smallsize = map(lambda x:int(x*0.25),im.size)
im.thumbnail(smallsize)
im.save(outfile, "JPEG")
except IOError:
print "cannot create thumbnail for", infile
3 comments:
你已經是程式達人了....
我從來不會想要用程式做這件事情....
不過看你這麼快,用python寫一個小程式就把這個問題解掉了,真是佩服佩服。
bow仁波切,快別這麼說。不要因為影片達人的事情把我變成程式達人跟某某達人啊...:P
Post a Comment