标签: python image python-3.x metadata wand
我使用wand-py但我无法写入Image.metadata,我该怎么办?
答案 0 :(得分:2)
使用Image.strip()方法:
Image.strip()
with Image(filename='i0.jpg') as img: img.strip() img.save(filename='i1.jpg')
请参阅more detail in the doc。