一、需求:批量修改该图片长与宽尺寸二、素材:三、代码:from PIL import Imageimport os.pathimport globdef convertjpg(jpgfile,outdir,width=512,height=512): img=Image.open(jpgfile) try: new_img=img.resize((width,height),Image.BILINEAR) if not os.path.exists(ou
图像处理
2023-07-08
69 点赞
1 评论
104 浏览