用python改变目录里所有图片的尺寸

来源:互联网 发布:mac pro可以玩gta5吗 编辑:程序博客网 时间:2024/06/01 10:41

#0005.py#导入模块import osfrom PIL import Image,ImageDraw,ImageFont#以iphone5分辨率为例w = 640h = 1136path = "/Users/U/workspace/python learning/0005/" #图片目录dir = os.listdir(path) #读取文件目录def crop(str):    #从图片中心截取    size=(        (im.size[0] - w)/2,        (im.size[1] - h)/2,        (im.size[0] + w)/2,        (im.size[1] + h)/2)    imcrop = im.crop(size)    imcrop.save(path + '.crop' + file ,im.format)for file in dir: #遍历目录#   if os.path.splitext(file)[1] == '.png': #用后缀方法识别文件类型,一次之可以识别一种图标类型#   另一种方法    try:        with Image.open(path+file) as im:            #print(im.format) #打印图片文件类型            crop(file)    except IOError:        continue#crop('/Users/U/workspace/python learning/0005/test.png') #test



效果如图:


不完善的地方,看图:


太短的图片会有黑边


原创粉丝点击