Skip to content

v2.6.2

Compare
Choose a tag to compare
@LeoHsiao1 LeoHsiao1 released this 26 Jun 14:04
· 187 commits to master since this release
a065eaf

Changes from v2.5.0:

  • Add API:
    pyexiv2.Image.modify_raw_xmp()
    pyexiv2.enableBMFF()
    See the Tutorial for details.
  • Change the way to delete a tag.
    Previously, it was assigning an empty string. For example:
    img.modify_xmp({"Xmp.xmp.Rating": ""})
    Now, assign None instead. For example:
    img.modify_xmp({"Xmp.xmp.Rating": None})
  • Upgrade the exiv2 version used by pyexiv2 to 0.27.4.
    So compatibility with Linux and MacOS has changed. See the Tutorial for details.