大家好,我需要一张一张打开一个文件夹中的图像,对图像进行一些处理并将它们保存回其他文件夹。我正在使用以下示例代码执行此操作。
path1 = path of folder of images
path2 = path of folder to save images
listing = os.listdir(path1)
for file in listing:
im = Image.open(path1 + file)
im.resize((50,50)) % need to do some more processing here
im.save(path2 + file, "JPEG")
有没有最好的方法来做到这一点?
谢谢!