我的目录结构如下:
ID
我有这段代码可以调整目录中所有图像的大小:
├── directory
| ├── sub-directory_1
| | ├── img1.jpg
| | └── img2.jpg
| |
| ├── sub-directory_2
| | ├── img1.jpg
| | └── img2.jpg
. .
. .
. .
.
| └── sub-directory_n
| | ├── img1.jpg
| | └── img2.jpg
是否可以修改它,以便迭代地调整子目录中所有图像的大小?
答案 0 :(得分:0)
这符合要求吗
from PIL import Image
import os, sys
dir_path = "/directory"
def resize_im(path):
if os.path.isfile(path):
im = Image.open(path).resize((64,64), Image.ANTIALIAS)
parent_dir = os.path.dirname(path)
img_name = os.path.basename(path).split('.')[0]
im.save(os.path.join(parent_dir, img_name + 'r.jpg'), 'JPEG', quality=90)
def resize_all(mydir):
for subdir , _ , fileList in os.walk(mydir):
for f in fileList:
try:
full_path = os.path.join(subdir,f)
resize_im(full_path)
except Exception as e:
print('Unable to resize %s. Skipping.' % full_path)
if __name__ == '__main__':
resize_all(dir_path)
在将调整大小后的图像保存在源图像的同一目录中时,请务必小心。如果您运行两次代码,它将创建许多额外调整大小的图像。