]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/jpeg/ExifLibrary.java
Version 18.6, December 2016
[GpsPrune.git] / tim / prune / jpeg / ExifLibrary.java
1 package tim.prune.jpeg;
2
3 import java.io.File;
4
5 /**
6  * Interface satisfied by both internal and external Exif implementations
7  */
8 public interface ExifLibrary
9 {
10         /** Get the Jpeg data from the given file */
11         public JpegData getJpegData(File inFile);
12
13         /** Check that dependencies are resolved */
14         public boolean looksOK();
15 }