我是python的初学者,正在尝试为我的硕士论文实现某些东西。
我正在尝试为图片添加黑色边框,但是我的问题是我想为目录/dataset/OldImages/0/*
中的所有图片添加边框,并生成带有黑色边框的新图片到目录{{ 1}}。
这是我做的代码:
/dataset/NewImages/0/
我收到此错误:
images = glob.glob('dataset/oldImages/0/*')
for i in images:
img = Image.open(images)
img_with_border = ImageOps.expand(img, border=70, fill='black')
new_path('dataset/newImages/0')
img_with_border.save(new path, 'png')