首先要介绍的是 Python Imaging Library,使用方法如下:
from PIL import Image from PIL.ExifTags import TAGSdef 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
返回的清单如下:
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,是一大串十六进制的字符,不知为啥。除了PIL之外,还有许多类库可供使用:
Media Metadata for Python
EXIF.py
Python Exif Parser
A Blogger's Exif Parser
pyexiv2
接着看EXIF.PY,使用方法非常简单:exif.py IMG_20121122_153514.jpg
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,好像没更新很久了,使用方法也很类似:
import exif photo_path = "somePath\to\a\photo.jpg" data = exif.parse(photo_path)
其他类库请自行研究。
本文向大家介绍Java读取图片EXIF信息的方法,包括了Java读取图片EXIF信息的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Java读取图片EXIF信息的方法。分享给大家供大家参考。具体分析如下: 首先介绍一下什么是EXIF,EXIF是Exchangeable Image File的缩写,这是一种专门为数码相机照片设定的格式。这种格式可以用来记录数字照片的属性信息,例如相机的
本文向大家介绍Python读取图片属性信息的实现方法,包括了Python读取图片属性信息的实现方法的使用技巧和注意事项,需要的朋友参考一下 本文是利用Python脚本读取图片信息,有几个说明如下: 1、没有实现错误处理 2、没有读取所有信息,大概只有 GPS 信息、图片分辨率、图片像素、设备商、拍摄设备等 3、简单修改后应该能实现暴力修改图片的 GPS 信息
问题内容: 为了减小要在网站中使用的图像的大小,我将质量降低到80-85%。这样可以最大程度地减小图像尺寸。 为了进一步减小尺寸而不影响质量,我的朋友指出,相机的原始图像包含大量称为Exif info的元数据。由于无需为网站中的图像保留此Exif信息,因此我们可以将其删除。这将使尺寸进一步减小3-10 kB。 但是我无法在Python代码中找到合适的库来执行此操作。我已经浏览了相关问题并尝试了一些
本文向大家介绍python通过exifread模块获得图片exif信息的方法,包括了python通过exifread模块获得图片exif信息的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了python通过exifread模块获得图片exif信息的方法。分享给大家供大家参考。具体分析如下: python可通过exifread模块获得图片exif信息 exifread模块的下载地址:ht
案例分析 任务:爬取京东指定商品图片信息,并存储在当期目录下。 url地址:https://list.jd.com/list.html?cat=9987,653,655 分析Web的响应内容,并作出对应处理准备: 具体实现代码: import requests from bs4 import BeautifulSoup from urllib.request import urlretrieve
本文向大家介绍python Timer 类使用介绍,包括了python Timer 类使用介绍的使用技巧和注意事项,需要的朋友参考一下 安装 iupdatable 包 Timer类 主要函数: 获取 Unix 时间戳(精确到秒):timestamp、unix、unix10 获取 Unix 时间戳(精确到毫秒):timestamp13、unix13 随机等待若干秒:sleep_range、sleep