import os, glob import sys from PIL import Image files = glob.glob('*.png') for f in files: img = Image.open(f) size = (800, 600) resized = img.resize(size, ...
確定! 回上一頁