|
13 | 13 | import com.drew.metadata.exif.ExifSubIFDDirectory;
|
14 | 14 | import com.drew.metadata.exif.GpsDirectory;
|
15 | 15 | import java.awt.Desktop;
|
| 16 | +import java.io.BufferedOutputStream; |
16 | 17 | import java.io.BufferedReader;
|
17 | 18 | import java.io.File;
|
| 19 | +import java.io.FileOutputStream; |
18 | 20 | import java.net.URI;
|
19 | 21 | import java.util.Date;
|
20 | 22 | import java.util.logging.Level;
|
|
23 | 25 | import java.util.List;
|
24 | 26 | import java.io.IOException;
|
25 | 27 | import java.io.InputStreamReader;
|
| 28 | +import java.io.OutputStream; |
| 29 | +import java.nio.file.Files; |
| 30 | +import java.nio.file.Path; |
| 31 | +import java.nio.file.Paths; |
| 32 | +import java.nio.file.StandardCopyOption; |
26 | 33 | import java.util.Locale;
|
27 | 34 | import org.apache.http.HttpResponse;
|
28 | 35 | import org.apache.http.NameValuePair;
|
29 | 36 | import org.apache.http.client.HttpClient;
|
30 | 37 | import org.apache.http.client.methods.HttpGet;
|
31 | 38 | import org.apache.http.client.methods.HttpPost;
|
32 | 39 | import org.apache.http.impl.client.HttpClientBuilder;
|
| 40 | +import org.apache.commons.imaging.formats.jpeg.exif.ExifRewriter; |
| 41 | +import org.apache.commons.imaging.ImageReadException; |
| 42 | +import org.apache.commons.imaging.ImageWriteException; |
| 43 | +import org.apache.commons.imaging.Imaging; |
| 44 | +import org.apache.commons.imaging.common.ImageMetadata; |
| 45 | +import org.apache.commons.imaging.common.RationalNumber; |
| 46 | +import org.apache.commons.imaging.formats.jpeg.JpegImageMetadata; |
| 47 | +import org.apache.commons.imaging.formats.tiff.TiffImageMetadata; |
| 48 | +import org.apache.commons.imaging.formats.tiff.constants.ExifTagConstants; |
| 49 | +import org.apache.commons.imaging.formats.tiff.constants.GpsTagConstants; |
| 50 | +import org.apache.commons.imaging.formats.tiff.write.TiffOutputDirectory; |
| 51 | +import org.apache.commons.imaging.formats.tiff.write.TiffOutputSet; |
33 | 52 |
|
34 | 53 | /**
|
35 | 54 | *
|
@@ -76,10 +95,49 @@ public static long getFileTime(File f){
|
76 | 95 | return 0;
|
77 | 96 | }
|
78 | 97 |
|
| 98 | + public static void setBearing(File f, Double bearing) |
| 99 | + throws IOException, ImageReadException, ImageWriteException{ |
| 100 | + |
| 101 | + try (FileOutputStream fos = new FileOutputStream(f.getParent()+ File.separator+"SUPERTMPDUMP12324231.jpg",false); |
| 102 | + OutputStream os = new BufferedOutputStream(fos);) { |
| 103 | + |
| 104 | + TiffOutputSet outputSet = null; |
| 105 | + |
| 106 | + final ImageMetadata metadata = Imaging.getMetadata(new File(f.getAbsolutePath())); |
| 107 | + final JpegImageMetadata jpegMetadata = (JpegImageMetadata) metadata; |
| 108 | + if (null != jpegMetadata) { |
| 109 | + final TiffImageMetadata exif = jpegMetadata.getExif(); |
| 110 | + |
| 111 | + if (null != exif) { |
| 112 | + outputSet = exif.getOutputSet(); |
| 113 | + } |
| 114 | + } |
| 115 | + |
| 116 | + if (null == outputSet) { |
| 117 | + outputSet = new TiffOutputSet(); |
| 118 | + } |
| 119 | + |
| 120 | + Rational r = new Rational(bearing); |
| 121 | + final TiffOutputDirectory exifDirectory = outputSet.getOrCreateGPSDirectory(); |
| 122 | + |
| 123 | + exifDirectory.removeField(GpsTagConstants.GPS_TAG_GPS_IMG_DIRECTION ); |
| 124 | + exifDirectory.add(GpsTagConstants.GPS_TAG_GPS_IMG_DIRECTION, new RationalNumber(r.getNumerator(), r.getDenominator())); |
| 125 | + |
| 126 | + |
| 127 | + new ExifRewriter().updateExifMetadataLossless(f, os, |
| 128 | + outputSet); |
| 129 | + //Replace file with new meta data |
| 130 | + Files.move(Paths.get(f.getPath()+ File.separator+"SUPERTMPDUMP12324231.jpg"), Paths.get(f.getAbsolutePath()), StandardCopyOption.REPLACE_EXISTING); |
| 131 | + } |
| 132 | + |
| 133 | + } |
| 134 | + |
| 135 | + |
79 | 136 | public static ImageProperties getImageProperties(File f){
|
80 | 137 | try{
|
81 | 138 | Metadata metadata = ImageMetadataReader.readMetadata(f);
|
82 | 139 | GpsDirectory directory = metadata.getFirstDirectoryOfType(GpsDirectory.class);
|
| 140 | + |
83 | 141 |
|
84 | 142 | ImageProperties imp = new ImageProperties();
|
85 | 143 | imp.setLatitude(directory.getGeoLocation().getLatitude());
|
@@ -304,3 +362,4 @@ public static Double calc_bearing(Double start_latitude, Double start_longitude,
|
304 | 362 | return Math.toDegrees( Math.atan2(Math.sin(dLongitude)*Math.cos(end_latitude), Math.cos(start_latitude)*Math.sin(end_latitude) - Math.sin(start_latitude)*Math.cos(end_latitude)*Math.cos(dLongitude)));
|
305 | 363 | }
|
306 | 364 | }
|
| 365 | + |
0 commit comments