本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理。
作者: 蒙娜丽胖
PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取
http://note.youdao.com/noteshare?id=3054cce4add8a909e784ad934f956cef
前言
有媒体曝出,微信发原图或存在泄露位置信息的风险。 对此,腾讯微信团队微博12月1日发布声明称,朋友圈发送的照片都经过系统自动压缩,不带位置等信息,实在担心的话,可以P完图再发,如下图:
微信团队提到过Exif,何为Exif?
可交换图像文件格式(英语:Exchangeable image file format,官方简称Exif),是专门为数码相机的照片设定的,可以记录数码照片的属性信息和拍摄数据。
Exif最初由日本电子工业发展协会在1996年制定,版本为1.0。1998年,升级到2.1,增加了对音频文件的支持。2002年3月,发表了2.2版。
Python库
这里需要Python的两个库,一个是读取Exif信息的exifread;一个是根据经纬度获取详细地址信息的geopy;
安装如下:
pip3 install exifread
pip3 install geopy
Python源码
1 import exifread 2 import json 3 import urllib.request 4 import sys 5 from geopy.geocoders import Nominatim 6 7 # 获取照片的详细信息 8 def get_img_infor_tup(photo): 9 img_file = open(photo, 'rb') 10 image_map = exifread.process_file(img_file) 11 12 try: 13 #图片的经度 14 img_longitude_ref = image_map["GPS GPSLongitudeRef"].printable 15 img_longitude = image_map["GPS GPSLongitude"].printable[1:-1].replace(" ","").replace("/",",").split(",") 16 img_longitude = float(img_longitude[0])+float(img_longitude[1])/60+float(img_longitude[2])/float(img_longitude[3])/3600 17 if img_longitude_ref != "E": 18 img_longitude = img_longitude * (-1) 19 20 #图片的纬度 21 img_latitude_ref = image_map["GPS GPSLatitudeRef"].printable 22 img_latitude = image_map["GPS GPSLatitude"].printable[1:-1].replace(" ","").replace("/",",").split(",") 23 img_latitude = float(img_latitude[0])+float(img_latitude[1])/60+float(img_latitude[2])/float(img_latitude[3])/3600 24 if img_latitude_ref != "N": 25 img_latitude = img_latitude*(-1) 26 27 #照片拍摄时间 28 img_create_date = image_map["EXIF DateTimeOriginal"].printable 29 30 img_file.close() 31 32 # 返回经纬度元组 33 return img_longitude, img_latitude, img_create_date 34 35 except Exception as e: 36 print('ERROR:图片中不包含Gps信息') 37 38 # 根据经纬度获取详细的信息 39 def get_detail_infor(lat, lon): 40 reverse_value = str(lat) + ', ' + str(lon) 41 geolocator = Nominatim() 42 location = geolocator.reverse(reverse_value) 43 44 print('照片的经纬度信息:') 45 print((location.latitude, location.longitude)) 46 47 print('照片的地址信息:') 48 print(location.address) 49 50 print('照片的全部信息:') 51 print(location.raw) 52 53 if __name__ == '__main__': 54 infor_tup = get_img_infor_tup('./image/IMG_2174.JPG') 55 get_detail_infor(infor_tup[1], infor_tup[0])