挑选文件夹里面宽大于300图片,挑选文件夹300,需要用到PIL库impo


需要用到PIL库

import sysimport ossys.path.append('PIL')from PIL import Image as impath = '/home/hualun/桌面/img/'new_path = '/home/hualun/桌面/img2/'for x in os.listdir(path):    if x.endswith('.jpg'):        file = im.open(path+x)        width = file.size[0]        if width > 300:            os.rename(path+x, new_path+x)            print "%s 移动完成.." % x

评论关闭