Reputation: 739
I use wand-py but I can't write into Image.metadata , what shoud I do?
Upvotes: 2
Views: 1229
Reputation: 16624
use Image.strip()
method:
with Image(filename='i0.jpg') as img:
img.strip()
img.save(filename='i1.jpg')
Upvotes: 4