I change the exif on a jpeg using piexif to read and write exif data, which seems to work fine. The issue is when I read and write the jpeg, even tho I don\'t change the byt
https://piexif.readthedocs.io/en/latest/functions.html
exif_dict = piexif.load(path) new_exif = adjust_exif(exif_dict) exif_bytes = piexif.dump(new_exif) piexif.insert(exif_bytes, path)