用python批量处理图片尺寸

由于每次新闻稿都要改尺寸 特别烦 所以想着批处理 但是wps的图片批处理又要开会员

就有了以下代码:

from PIL import Image
import os.path
import glob
def convertjpg(jpgfile,outdir,width=400,height=350): #自行修改要修改的尺寸 800*450或400*350
    img=Image.open(jpgfile)
    try:
        new_img = img.resize((width, height), Image.BILINEAR)
        if new_img.mode == 'P':
            new_img = new_img.convert("RGB")
        if new_img.mode == 'RGBA':
            new_img = new_img.convert("RGB")
        new_img.save(os.path.join(outdir, os.path.basename(jpgfile)))
    except Exception as e:
        print(e)

for jpgfile in glob.glob("C:/Users/a1765/Desktop/新闻稿/原图/*.jpg"): #“”里的部分自行改为自己的原图储存位置+/*.jpg
    # print(jpgfile)
    convertjpg(jpgfile,"C:/Users/a1765/Desktop/新闻稿/400x350") #改为自己的存储位置

你可能感兴趣的:(用python提高工作效率,python)