读取和修改数字图像的元数据,包括exif、iptc、xmp。

pyexiv2的Python项目详细描述


< H1> PyxIV2

读取和修改数字图像的元数据,包括exif、iptc、xmp。

功能

用法

  • 读取元数据:

    >>>frompyexiv2importImage>>>i=Image("tests/1.jpg")>>>i.read_exif(){'Exif.Image.DateTime':'2019:06:23 19:45:17','Exif.Image.Artist':'TEST','Exif.Image.Rating':'4',...}>>>i.read_iptc(){'Iptc.Envelope.CharacterSet':'\x1b%G','Iptc.Application2.ObjectName':'TEST','Iptc.Application2.Keywords':'TEST',...}>>>i.read_xmp(){'Xmp.dc.format':'image/jpeg','Xmp.dc.rights':'lang="x-default" TEST','Xmp.dc.subject':'TEST',...}
  • 修改元数据:

    >>># prepare the XMP data you want to modify>>>_dict={"Xmp.xmp.CreateDate":"2019-06-23T19:45:17.834",# this will overwrite its original value, or add it if it doesn't exist..."Xmp.xmp.Rating":""}# set an empty str explicitly to delete the datum}>>>i.modify_xmp(_dict)>>>xmp_dict=i.read_xmp()# read it again>>>xmp_dict["Xmp.xmp.CreateDate"]'2019-06-23T19:45:17.834'# it has been set>>>xmp_dict["Xmp.xmp.Rating"]KeyError:'Xmp.xmp.Rating'# it has been deleted# use i.modify_exif() and i.modify_iptc() in the same way
  • 简而言之,请调用类pyexiv2.Image

    的公共方法
    i=Image("tests/1.jpg")i.read_exif()i.read_iptc()i.read_xmp()i.read_all()i.modify_exif({"Exif.Image.ImageDescription":"test",...})i.modify_iptc({"Iptc.Application2.ObjectName":"test",...})i.modify_xmp({"Xmp.xmp.CreateDate":"2019-06-23T19:45:17.834",...})i.modify_all({"EXIF":{...},"IPTC":{...},"XMP":{...}})i.clear_exif()i.clear_iptc()i.clear_xmp()i.clear_all()

测试

文件夹中有一些测试用例“PyExvI2/测试”。通过pytest运行它们:

pip install pytest psutil
pytest -v

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
带Maven的Eclipse Java存储库:缺少工件:compile   java如何以编程方式停止RMI服务器并通知所有客户端   java Roboguice抛出ClassNotFoundException:AnnotationDatabaseImpl   java为什么lucene 4.0删除IndexWriter类的两个构造函数?   nls如何避免java项目上不需要的日志消息?   测试无法在Selenium Webdriver(java)中定位iframe   使用XML的java servlet   java如何使用jxl用****屏蔽单元格   java使用SQLite从数据库中选择“没有这样的列”   导入扫描程序后出现java编译错误   插入查询的java空指针异常   使用创建PostgreSQL数据库。Java应用中的sql脚本   java使用jsoup将HTML解析为格式化的明文