Python 练习册 => 0005 你有一个目录,装了很多照片,把它们的尺寸变成都不大于 iPhone5 分辨率的大小
心得 用 Pillow 缩放图像 Python3 判断如果目录不存在则创建: os.makedirs(OUTPUT_DIR, exist_ok=True) 代码: #!/usr/bin/env python3 # -*- coding: utf-8 -*- from PIL import Image import os def main(): IMAGE_DIR = 'images' OUTPUT