日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Python讀取圖片EXIF信息類庫介紹和使用實(shí)例

系統(tǒng) 2401 0

首先要介紹的是 Python Imaging Library,使用方法如下:

復(fù)制代碼 代碼如下:

from PIL import Image
from PIL.ExifTags import TAGS

def get_exif_data(fname):
??? """Get embedded EXIF data from image file."""
??? ret = {}
??? try:
??????? img = Image.open(fname)
??????? if hasattr( img, '_getexif' ):
??????????? exifinfo = img._getexif()
??????????? if exifinfo != None:
??????????????? for tag, value in exifinfo.items():
??????????????????? decoded = TAGS.get(tag, tag)
??????????????????? ret[decoded] = value
??? except IOError:
??????? print 'IOERROR ' + fname
??? return ret

if __name__ == '__main__':
??? fileName = 'C:/Users/Leyond/Desktop/IMG_20121122_153514.jpg'
??? exif = get_exif_data(fileName)
??? print exif


返回的清單如下:

復(fù)制代碼 代碼如下:

ExifVersion
ComponentsConfiguration
ExifImageWidth
DateTimeOriginal
DateTimeDigitized
ExifInteroperabilityOffset
FlashPixVersion
MeteringMode
LightSource
Flash
FocalLength
41986
ImageDescription
Make
Model
Orientation
YCbCrPositioning
41988
XResolution
YResolution
59932
ExposureTime
ExposureProgram
ColorSpace
41990
ISOSpeedRatings
ResolutionUnit
41987
FNumber
Software
DateTime
ExifImageHeight
ExifOffset

其中59932,是一大串十六進(jìn)制的字符,不知為啥。除了PIL之外,還有許多類庫可供使用:

Media Metadata for Python

EXIF.py

Python Exif Parser

A Blogger's Exif Parser

pyexiv2


接著看EXIF.PY,使用方法非常簡單:exif.py IMG_20121122_153514.jpg

復(fù)制代碼 代碼如下:

EXIF ColorSpace (Short): sRGB
EXIF ComponentsConfiguration (Undefined): YCbCr
EXIF DateTimeDigitized (ASCII): 2012:11:22 15:35:14
EXIF DateTimeOriginal (ASCII): 2012:11:22 15:35:14
EXIF DigitalZoomRatio (Ratio): 1
EXIF ExifImageLength (Long): 2560
EXIF ExifImageWidth (Long): 1920
EXIF ExifVersion (Undefined): 0220
EXIF ExposureBiasValue (Signed Ratio): 0
EXIF ExposureMode (Short): Auto Exposure
EXIF ExposureProgram (Short): Portrait Mode
EXIF ExposureTime (Ratio): 1/256
EXIF FNumber (Ratio): 14/5
EXIF Flash (Short): Flash did not fire
EXIF FlashPixVersion (Undefined): 0100
EXIF FocalLength (Ratio): 35
EXIF ISOSpeedRatings (Short): 56
EXIF InteroperabilityOffset (Long): 4810
EXIF LightSource (Short): other light source
EXIF MeteringMode (Short): CenterWeightedAverage
EXIF Padding (Undefined): []
EXIF SceneCaptureType (Short): Portrait
EXIF WhiteBalance (Short): Auto
Image DateTime (ASCII): 2012:11:24 09:44:50
Image ExifOffset (Long): 2396
Image ImageDescription (ASCII):
Image Make (ASCII):
Image Model (ASCII):
Image Orientation (Short): Horizontal (normal)
Image Padding (Undefined): []
Image ResolutionUnit (Short): Pixels/Inch
Image Software (ASCII): Microsoft Windows Photo Viewer 6.1.7600.16385
Image XResolution (Ratio): 72
Image YCbCrPositioning (Short): Co-sited
Image YResolution (Ratio): 72
Thumbnail Compression (Short): JPEG (old-style)
Thumbnail JPEGInterchangeFormat (Long): 4970
Thumbnail JPEGInterchangeFormatLength (Long): 3883
Thumbnail Orientation (Short): Horizontal (normal)
Thumbnail ResolutionUnit (Short): Pixels/Inch
Thumbnail XResolution (Ratio): 72
Thumbnail YCbCrPositioning (Short): Co-sited
Thumbnail YResolution (Ratio): 72

至于Python Exif Parser,好像沒更新很久了,使用方法也很類似:

復(fù)制代碼 代碼如下:

import exif
photo_path = "somePath\to\a\photo.jpg"
data = exif.parse(photo_path)

其他類庫請自行研究。


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長非常感激您!手機(jī)微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 乌恰县| 德庆县| 江源县| 同德县| 苏州市| 锦屏县| 息烽县| 双柏县| 昭平县| 郑州市| 宁乡县| 高淳县| 拉萨市| 桓台县| 礼泉县| 枣阳市| 凉山| 佛山市| 息烽县| 崇礼县| 天门市| 武隆县| 西吉县| 青岛市| 师宗县| 和林格尔县| 和平县| 兴文县| 红原县| 绵阳市| 开化县| 日照市| 建阳市| 海口市| 攀枝花市| 东阿县| 镇安县| 海原县| 吴江市| 大兴区| 三亚市|