Example of using exiv2 to strip exiv tags from an image in Python

419 Views Asked by At

I'd like to call exiv2 from Python to strip all EXIF tags from an image, then calculate the md5 hash of the image without the EXIF tags from python.

What's the best way to do this?

1

There are 1 best solutions below

0
On

You can shell out a subprocess (here) and do this:

exiv2 -da a.jpg && md5 < a.jpg

or

jhead -purejpg a.jpg