source: josm/trunk/src/org/openstreetmap/josm/tools/ExifReader.java@ 10834

Last change on this file since 10834 was 10378, checked in by Don-vip, 8 years ago

Checkstyle 6.19: enable SingleSpaceSeparator and fix violations

  • Property svn:eol-style set to native
File size: 10.8 KB
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.tools;
3
4import java.awt.geom.AffineTransform;
5import java.io.File;
6import java.io.IOException;
7import java.util.Date;
8
9import org.openstreetmap.josm.Main;
10import org.openstreetmap.josm.data.coor.LatLon;
11import org.openstreetmap.josm.tools.date.DateUtils;
12
13import com.drew.imaging.jpeg.JpegMetadataReader;
14import com.drew.imaging.jpeg.JpegProcessingException;
15import com.drew.lang.Rational;
16import com.drew.metadata.Directory;
17import com.drew.metadata.Metadata;
18import com.drew.metadata.MetadataException;
19import com.drew.metadata.Tag;
20import com.drew.metadata.exif.ExifDirectoryBase;
21import com.drew.metadata.exif.ExifIFD0Directory;
22import com.drew.metadata.exif.ExifSubIFDDirectory;
23import com.drew.metadata.exif.GpsDirectory;
24
25/**
26 * Read out EXIF information from a JPEG file
27 * @author Imi
28 * @since 99
29 */
30public final class ExifReader {
31
32 private ExifReader() {
33 // Hide default constructor for utils classes
34 }
35
36 /**
37 * Returns the date/time from the given JPEG file.
38 * @param filename The JPEG file to read
39 * @return The date/time read in the EXIF section, or {@code null} if not found
40 */
41 public static Date readTime(File filename) {
42 try {
43 Metadata metadata = JpegMetadataReader.readMetadata(filename);
44 String dateStr = null;
45 String subSeconds = null;
46 for (Directory dirIt : metadata.getDirectories()) {
47 if (!(dirIt instanceof ExifDirectoryBase)) {
48 continue;
49 }
50 for (Tag tag : dirIt.getTags()) {
51 if (tag.getTagType() == ExifSubIFDDirectory.TAG_DATETIME_ORIGINAL /* 0x9003 */ &&
52 !tag.getDescription().matches("\\[[0-9]+ .+\\]")) {
53 dateStr = tag.getDescription();
54 }
55 if (tag.getTagType() == ExifIFD0Directory.TAG_DATETIME /* 0x0132 */ ||
56 tag.getTagType() == ExifSubIFDDirectory.TAG_DATETIME_DIGITIZED /* 0x9004 */) {
57 if (dateStr != null) {
58 // prefer TAG_DATETIME_ORIGINAL
59 dateStr = tag.getDescription();
60 }
61 }
62 if (tag.getTagType() == ExifIFD0Directory.TAG_SUBSECOND_TIME_ORIGINAL) {
63 subSeconds = tag.getDescription();
64 }
65 }
66 }
67 if (dateStr != null) {
68 dateStr = dateStr.replace('/', ':'); // workaround for HTC Sensation bug, see #7228
69 final Date date = DateUtils.fromString(dateStr);
70 if (subSeconds != null) {
71 try {
72 date.setTime(date.getTime() + (long) (1000L * Double.parseDouble("0." + subSeconds)));
73 } catch (NumberFormatException e) {
74 Main.warn("Failed parsing sub seconds from [{0}]", subSeconds);
75 Main.warn(e);
76 }
77 }
78 return date;
79 }
80 } catch (UncheckedParseException | JpegProcessingException | IOException e) {
81 Main.error(e);
82 }
83 return null;
84 }
85
86 /**
87 * Returns the image orientation of the given JPEG file.
88 * @param filename The JPEG file to read
89 * @return The image orientation as an {@code int}. Default value is 1. Possible values are listed in EXIF spec as follows:<br><ol>
90 * <li>The 0th row is at the visual top of the image, and the 0th column is the visual left-hand side.</li>
91 * <li>The 0th row is at the visual top of the image, and the 0th column is the visual right-hand side.</li>
92 * <li>The 0th row is at the visual bottom of the image, and the 0th column is the visual right-hand side.</li>
93 * <li>The 0th row is at the visual bottom of the image, and the 0th column is the visual left-hand side.</li>
94 * <li>The 0th row is the visual left-hand side of the image, and the 0th column is the visual top.</li>
95 * <li>The 0th row is the visual right-hand side of the image, and the 0th column is the visual top.</li>
96 * <li>The 0th row is the visual right-hand side of the image, and the 0th column is the visual bottom.</li>
97 * <li>The 0th row is the visual left-hand side of the image, and the 0th column is the visual bottom.</li></ol>
98 * @see <a href="http://www.impulseadventure.com/photo/exif-orientation.html">http://www.impulseadventure.com/photo/exif-orientation.html</a>
99 * @see <a href="http://www.daveperrett.com/articles/2012/07/28/exif-orientation-handling-is-a-ghetto">
100 * http://www.daveperrett.com/articles/2012/07/28/exif-orientation-handling-is-a-ghetto</a>
101 */
102 public static Integer readOrientation(File filename) {
103 try {
104 final Metadata metadata = JpegMetadataReader.readMetadata(filename);
105 final Directory dir = metadata.getFirstDirectoryOfType(ExifIFD0Directory.class);
106 return dir == null ? null : dir.getInteger(ExifIFD0Directory.TAG_ORIENTATION);
107 } catch (JpegProcessingException | IOException e) {
108 Main.error(e);
109 }
110 return null;
111 }
112
113 /**
114 * Returns the geolocation of the given JPEG file.
115 * @param filename The JPEG file to read
116 * @return The lat/lon read in the EXIF section, or {@code null} if not found
117 * @since 6209
118 */
119 public static LatLon readLatLon(File filename) {
120 try {
121 final Metadata metadata = JpegMetadataReader.readMetadata(filename);
122 final GpsDirectory dirGps = metadata.getFirstDirectoryOfType(GpsDirectory.class);
123 return readLatLon(dirGps);
124 } catch (JpegProcessingException | IOException | MetadataException e) {
125 Main.error(e);
126 }
127 return null;
128 }
129
130 /**
131 * Returns the geolocation of the given EXIF GPS directory.
132 * @param dirGps The EXIF GPS directory
133 * @return The lat/lon read in the EXIF section, or {@code null} if {@code dirGps} is null
134 * @throws MetadataException if invalid metadata is given
135 * @since 6209
136 */
137 public static LatLon readLatLon(GpsDirectory dirGps) throws MetadataException {
138 if (dirGps != null) {
139 double lat = readAxis(dirGps, GpsDirectory.TAG_LATITUDE, GpsDirectory.TAG_LATITUDE_REF, 'S');
140 double lon = readAxis(dirGps, GpsDirectory.TAG_LONGITUDE, GpsDirectory.TAG_LONGITUDE_REF, 'W');
141 return new LatLon(lat, lon);
142 }
143 return null;
144 }
145
146 /**
147 * Returns the direction of the given JPEG file.
148 * @param filename The JPEG file to read
149 * @return The direction of the image when it was captures (in degrees between 0.0 and 359.99),
150 * or {@code null} if missing or if {@code dirGps} is null
151 * @since 6209
152 */
153 public static Double readDirection(File filename) {
154 try {
155 final Metadata metadata = JpegMetadataReader.readMetadata(filename);
156 final GpsDirectory dirGps = metadata.getFirstDirectoryOfType(GpsDirectory.class);
157 return readDirection(dirGps);
158 } catch (JpegProcessingException | IOException e) {
159 Main.error(e);
160 }
161 return null;
162 }
163
164 /**
165 * Returns the direction of the given EXIF GPS directory.
166 * @param dirGps The EXIF GPS directory
167 * @return The direction of the image when it was captures (in degrees between 0.0 and 359.99),
168 * or {@code null} if missing or if {@code dirGps} is null
169 * @since 6209
170 */
171 public static Double readDirection(GpsDirectory dirGps) {
172 if (dirGps != null) {
173 Rational direction = dirGps.getRational(GpsDirectory.TAG_IMG_DIRECTION);
174 if (direction != null) {
175 return direction.doubleValue();
176 }
177 }
178 return null;
179 }
180
181 private static double readAxis(GpsDirectory dirGps, int gpsTag, int gpsTagRef, char cRef) throws MetadataException {
182 double value;
183 Rational[] components = dirGps.getRationalArray(gpsTag);
184 if (components != null) {
185 double deg = components[0].doubleValue();
186 double min = components[1].doubleValue();
187 double sec = components[2].doubleValue();
188
189 if (Double.isNaN(deg) && Double.isNaN(min) && Double.isNaN(sec))
190 throw new IllegalArgumentException("deg, min and sec are NaN");
191
192 value = Double.isNaN(deg) ? 0 : deg + (Double.isNaN(min) ? 0 : (min / 60)) + (Double.isNaN(sec) ? 0 : (sec / 3600));
193
194 if (dirGps.getString(gpsTagRef).charAt(0) == cRef) {
195 value = -value;
196 }
197 } else {
198 // Try to read lon/lat as double value (Nonstandard, created by some cameras -> #5220)
199 value = dirGps.getDouble(gpsTag);
200 }
201 return value;
202 }
203
204 /**
205 * Returns a Transform that fixes the image orientation.
206 *
207 * Only orientation 1, 3, 6 and 8 are supported. Everything else is treated as 1.
208 * @param orientation the exif-orientation of the image
209 * @param width the original width of the image
210 * @param height the original height of the image
211 * @return a transform that rotates the image, so it is upright
212 */
213 public static AffineTransform getRestoreOrientationTransform(final int orientation, final int width, final int height) {
214 final int q;
215 final double ax, ay;
216 switch (orientation) {
217 case 8:
218 q = -1;
219 ax = width / 2d;
220 ay = width / 2d;
221 break;
222 case 3:
223 q = 2;
224 ax = width / 2d;
225 ay = height / 2d;
226 break;
227 case 6:
228 q = 1;
229 ax = height / 2d;
230 ay = height / 2d;
231 break;
232 default:
233 q = 0;
234 ax = 0;
235 ay = 0;
236 }
237 return AffineTransform.getQuadrantRotateInstance(q, ax, ay);
238 }
239
240 /**
241 * Check, if the given orientation switches width and height of the image.
242 * E.g. 90 degree rotation
243 *
244 * Only orientation 1, 3, 6 and 8 are supported. Everything else is treated
245 * as 1.
246 * @param orientation the exif-orientation of the image
247 * @return true, if it switches width and height
248 */
249 public static boolean orientationSwitchesDimensions(int orientation) {
250 return orientation == 6 || orientation == 8;
251 }
252
253 /**
254 * Check, if the given orientation requires any correction to the image.
255 *
256 * Only orientation 1, 3, 6 and 8 are supported. Everything else is treated
257 * as 1.
258 * @param orientation the exif-orientation of the image
259 * @return true, unless the orientation value is 1 or unsupported.
260 */
261 public static boolean orientationNeedsCorrection(int orientation) {
262 return orientation == 3 || orientation == 6 || orientation == 8;
263 }
264}
Note: See TracBrowser for help on using the repository browser.