c4fc1fe5a5b5bce0422df68da0471c5644f79432
[mediagoblin.git] / mediagoblin / tools / exif.py
1 # GNU MediaGoblin -- federated, autonomous media hosting
2 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 from mediagoblin.tools.extlib.EXIF import process_file, Ratio
18 from mediagoblin.processing import BadMediaFail
19 from mediagoblin.tools.translate import pass_to_ugettext as _
20
21 # A list of tags that should be stored for faster access
22 USEFUL_TAGS = [
23 'Image Make',
24 'Image Model',
25 'EXIF FNumber',
26 'EXIF Flash',
27 'EXIF FocalLength',
28 'EXIF ExposureTime',
29 'EXIF ApertureValue',
30 'EXIF ExposureMode',
31 'EXIF ISOSpeedRatings',
32 'EXIF UserComment',
33 ]
34
35
36 def exif_image_needs_rotation(exif_tags):
37 """
38 Returns True if EXIF orientation requires rotation
39 """
40 return 'Image Orientation' in exif_tags \
41 and exif_tags['Image Orientation'].values[0] != 1
42
43
44 def exif_fix_image_orientation(im, exif_tags):
45 """
46 Translate any EXIF orientation to raw orientation
47
48 Cons:
49 - REDUCES IMAGE QUALITY by recompressig it
50
51 Pros:
52 - Prevents neck pain
53 """
54 # Rotate image
55 if 'Image Orientation' in exif_tags:
56 rotation_map = {
57 3: 180,
58 6: 270,
59 8: 90}
60 orientation = exif_tags['Image Orientation'].values[0]
61 if orientation in rotation_map.keys():
62 im = im.rotate(
63 rotation_map[orientation])
64
65 return im
66
67
68 def extract_exif(filename):
69 """
70 Returns EXIF tags found in file at ``filename``
71 """
72 exif_tags = {}
73
74 try:
75 image = open(filename)
76 exif_tags = process_file(image)
77 except IOError:
78 raise BadMediaFail(_('Could not read the image file.'))
79
80 return exif_tags
81
82
83 def clean_exif(exif):
84 '''
85 Clean the result from anything the database cannot handle
86 '''
87 # Discard any JPEG thumbnail, for database compatibility
88 # and that I cannot see a case when we would use it.
89 # It takes up some space too.
90 disabled_tags = [
91 'Thumbnail JPEGInterchangeFormatLength',
92 'JPEGThumbnail',
93 'Thumbnail JPEGInterchangeFormat']
94
95 clean_exif = {}
96
97 for key, value in exif.items():
98 if not key in disabled_tags:
99 clean_exif[key] = _ifd_tag_to_dict(value)
100
101 return clean_exif
102
103
104 def _ifd_tag_to_dict(tag):
105 data = {
106 'printable': tag.printable,
107 'tag': tag.tag,
108 'field_type': tag.field_type,
109 'field_offset': tag.field_offset,
110 'field_length': tag.field_length,
111 'values': None}
112 if type(tag.values) == list:
113 data['values'] = []
114 for val in tag.values:
115 if isinstance(val, Ratio):
116 data['values'].append(
117 _ratio_to_list(val))
118 else:
119 data['values'].append(val)
120 else:
121 data['values'] = tag.values
122
123 return data
124
125
126 def _ratio_to_list(ratio):
127 return [ratio.num, ratio.den]
128
129
130 def get_useful(tags):
131 useful = {}
132 for key, tag in tags.items():
133 if key in USEFUL_TAGS:
134 useful[key] = tag
135
136 return useful
137
138
139 def get_gps_data(tags):
140 """
141 Processes EXIF data returned by EXIF.py
142 """
143 gps_data = {}
144
145 if not 'Image GPSInfo' in tags:
146 return gps_data
147
148 try:
149 dms_data = {
150 'latitude': tags['GPS GPSLatitude'],
151 'longitude': tags['GPS GPSLongitude']}
152
153 for key, dat in dms_data.items():
154 gps_data[key] = (
155 lambda v:
156 float(v[0].num) / float(v[0].den) \
157 + (float(v[1].num) / float(v[1].den) / 60) \
158 + (float(v[2].num) / float(v[2].den) / (60 * 60))
159 )(dat.values)
160
161 if tags['GPS GPSLongitudeRef'].values == 'W':
162 gps_data['longitude'] /= -1
163
164 except KeyError:
165 pass
166
167 try:
168 gps_data['direction'] = (
169 lambda d:
170 float(d.num) / float(d.den)
171 )(tags['GPS GPSImgDirection'].values[0])
172 except KeyError:
173 pass
174
175 try:
176 gps_data['altitude'] = (
177 lambda a:
178 float(a.num) / float(a.den)
179 )(tags['GPS GPSAltitude'].values[0])
180 except KeyError:
181 pass
182
183 return gps_data