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

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

概述将开发过程中重要的内容段收藏起来,下边内容是关于python用来获得图片exif信息的库的内容。 # library test/debug function (dump given files) if __name__ == ‘__main__‘: import sys import getopt # parse command line options/arguments try: opts,

将开发过程中重要的内容段收藏起来,下边内容是关于python用来获得图片exif信息的库的内容。
# library test/deBUG function (dump given files)
if __name__ == ‘__main__‘:
import sys
import 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 unreadablen"%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

<h4>附件:<a href="/uploadfiles/2013/09/24/137998571444528.zip">源代码下载</a></h4>

总结

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

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

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

原文地址: http://outofmemory.cn/langs/1195297.html

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

发表评论

登录后才能评论

评论列表(0条)

保存