< python PIL - 批量图像处理 - 生成自定义大小图像 >

  • 直接用python自带的PIL图像库,对一个文件夹下所有jpg/png的图像进行自定义像素变换
from PIL import Image
import os.path
import glob def convertjpg(jpgfile,outdir,width=48,height=48): ## 选择自定义大小的width/height
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/62473/Desktop/qqhead/*.png"): ## 待转换图片存放路径 png可以改成jpg
# print(jpgfile)
convertjpg(jpgfile,"C:/Users/62473/Desktop/new") ## 转换后图片保存路径
05-11 16:01