python用来获得图片exif信息的库代码

python用来获得图片exif信息的库代码,第1张

概述python用来获得图片exif信息的库代码

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

exif-py是一个纯python实现的获取图片元数据的python库,官方下载地址:
http://exif-py.svn.sourceforge.net/viewvc/exif-py/source/EXIF.py?revision=19&view=markup
下面的代码演示的是调用方法。
# library test/deBUG function (dump given files)if __name__ == '__main__':    @R_502_5565@ sys    @R_502_5565@ getopt     # parse command line options/arguments    try:        opts,args = getopt.getopt(sys.argv[1:],"hqsdt:v",["help","quick","strict","deBUG","stop-tag="])    except getopt.GetoptError:        usage(2)    if args == []:        usage(2)    detailed = True    stop_tag = 'UNDEF'    deBUG = False    strict = False    for o,a in opts:        if o in ("-h","--help"):            usage(0)        if o in ("-q","--quick"):            detailed = False        if o in ("-t","--stop-tag"):            stop_tag = a        if o in ("-s","--strict"):            strict = True        if o in ("-d","--deBUG"):            deBUG = True     # output info for each file    for filename in args:        try:            file=open(filename,'rb')        except:            print "'%s' is unreadable\n"%filename            continue        print filename + ':'        # get the Tags        data = process_file(file,stop_tag=stop_tag,details=detailed,strict=strict,deBUG=deBUG)        if not data:            print 'No EXIF information found'            continue         x=data.keys()        x.sort()        for i in x:            if i in ('JPEGthumbnail','TIFFthumbnail'):                continue            try:                print '   %s (%s): %s' % \                      (i,FIELD_TYPES[data[i].fIEld_type][2],data[i].printable)            except:                print 'error',i,'"',data[i],'"'        if 'JPEGthumbnail' in data:            print 'file has JPEG thumbnail'        print

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的python用来获得图片exif信息的库代码全部内容,希望文章能够帮你解决python用来获得图片exif信息的库代码所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://www.outofmemory.cn/langs/1198965.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存