You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sanselan-dev@incubator.apache.org by Berthold Daum <be...@bdaum.de> on 2009/04/14 07:52:45 UTC

Sanselan 0.97

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: berthold.daum@bdaum.de
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;

}

Re: Sanselan 0.97

Posted by Charles Matthew Chen <ch...@gmail.com>.
Hello Berthold,

   That's great.  Can you please contribute this to the project by
adding the patch as a file attachment to an issue in our project?

Issue tracker: https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&pid=12310720&status=1

   Adding a file attachment to an issue includes a contribution
consent form that will allow us to integrate the patch.

Thanks,
   Charles


On Tue, Apr 14, 2009 at 3:52 AM, Berthold Daum <be...@bdaum.de> wrote:
> 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: berthold.daum@bdaum.de
> 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;
>
> }
>