python/Pillow

여러장 이미지 일괄 크기조정

spring99 2021. 3. 4. 18:03
import os
import glob
from PIL import Image

files = glob.glob('C:\WearPerfume\*.jpg')

for f in files:
    img = Image.open(f)
    img_resize = img.resize((int(img.width / 2), int(img.height / 2)))
    title, ext = os.path.splitext(f)
    img_resize.save(title + '_half' + ext)

원본 폴더에 생성됩니다.