Hello, I made a small fix for class org.apache.sanselan.formats.tiff.TiffField in order to improve support for GPS coded TIFF files.
Sincerely Berthold Daum ----------------------------- Dr. Berthold Daum bdaum industrial communications email: [email protected] web: www.bdaum.de Berthold Daum is author of the books "Stadt, Land, Fluss - Natur- und Stadtlandschaften digital fotografieren", "Java 6", "Java-Entwicklung mit Eclipse 3.3", "Web-Entwicklung mit Eclipse 3", "Rich-Client-Entwicklung mit Eclipse 3.3", "Das Eclipse-Codebuch", "Professional Eclipse for Java-Developers", "Eclipse para desarrolladores Java", "Eclipse 3 pour les développeurs Java", "Modeling Business Objects with XML Schema", "System architecture with XML" and "Success with Electronic Business". private static TagInfo getTag(int directoryType, int tag) { Object key = new Integer(tag); // List possibleMatches = (List) EXIF_TAG_MAP.get(key); List possibleMatches = (List) ALL_TAG_MAP.get(key); //bd if (null == possibleMatches) { return TIFF_TAG_UNKNOWN; } TagInfo result = getTag(directoryType, tag, possibleMatches); return result; }
