如何使用wand python删除图像元数据

时间:2017-11-21 08:53:05

标签: python image python-3.x metadata wand

我使用wand-py但我无法写入Image.metadata,我该怎么办?

1 个答案:

答案 0 :(得分:2)

使用Image.strip()方法:

with Image(filename='i0.jpg') as img:
    img.strip()
    img.save(filename='i1.jpg')

请参阅more detail in the doc