From sanselan-dev-return-421-apmail-incubator-sanselan-dev-archive=incubator.apache.org@incubator.apache.org Tue Apr 14 12:43:22 2009 Return-Path: Delivered-To: apmail-incubator-sanselan-dev-archive@minotaur.apache.org Received: (qmail 77678 invoked from network); 14 Apr 2009 12:43:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Apr 2009 12:43:22 -0000 Received: (qmail 93363 invoked by uid 500); 14 Apr 2009 12:43:21 -0000 Delivered-To: apmail-incubator-sanselan-dev-archive@incubator.apache.org Received: (qmail 93324 invoked by uid 500); 14 Apr 2009 12:43:21 -0000 Mailing-List: contact sanselan-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sanselan-dev@incubator.apache.org Delivered-To: mailing list sanselan-dev@incubator.apache.org Received: (qmail 93314 invoked by uid 99); 14 Apr 2009 12:43:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Apr 2009 12:43:21 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of charlesmchen@gmail.com designates 72.14.220.158 as permitted sender) Received: from [72.14.220.158] (HELO fg-out-1718.google.com) (72.14.220.158) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Apr 2009 12:43:13 +0000 Received: by fg-out-1718.google.com with SMTP id l27so496039fgb.3 for ; Tue, 14 Apr 2009 05:42:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=lpb0z+16JaoW5VlhLfrP7lje9Q0MytcILchpjowFjfs=; b=eH78ODbRFP3cowj/eir1NSLK7hGgt+I4Zb5LGvD6jIvt7nMUq9/8LLQzh8ZSwM87pk 56EU8+VC72iMumjLkYBYCApNxJnlPqLggUgIh4l2r/V4Qc2Il54W90tHXe3jOrh+mYzm MibMsArpuZAcvw5HSBJaWDJGrulpg8uzyPu5w= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=p/+qDcpv19YDlhvaq/mSBtwHWIBcZ0hj/TZKlKO1ZFD4Bv7y1B5D85qIeDsKiCdxoZ CaU+MZj9Yq+kD8FFbcmO2bKHBqF+Fja1b/Rrf8FymBwHNCdMW8A9Vhfbzn5XrqBPXgTH g5e5wI5eJDFjCwUbay2k8V4ZDHS+AoNDeLDCE= MIME-Version: 1.0 Received: by 10.86.61.13 with SMTP id j13mr5532304fga.65.1239712965913; Tue, 14 Apr 2009 05:42:45 -0700 (PDT) In-Reply-To: <0D1793B447E0436A945B6C923AAD00DE@RIMHORN> References: <0D1793B447E0436A945B6C923AAD00DE@RIMHORN> Date: Tue, 14 Apr 2009 08:42:45 -0400 Message-ID: Subject: Re: Sanselan 0.97 From: Charles Matthew Chen To: sanselan-dev@incubator.apache.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org 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?re= set=3Dtrue&pid=3D12310720&status=3D1 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 wro= te: > Hello, > > I made a small fix for class > org.apache.sanselan.formats.tiff.TiffField in order to improve support fo= r 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 Sta= dtlandschaften digital fotografieren", "Java 6", =A0"Java-Entwicklung mit E= clipse 3.3", > "Web-Entwicklung mit Eclipse 3", "Rich-Client-Entwicklung mit Eclipse 3.3= ", > "Das Eclipse-Codebuch", =A0"Professional Eclipse for Java-Developers", > "Eclipse para desarrolladores Java", "Eclipse 3 pour les d=E9veloppeurs J= ava", > "Modeling Business Objects with XML Schema", "System architecture with XM= L" > and "Success with Electronic Business". > > > > > private static TagInfo getTag(int directoryType, int tag) > > { > > Object key =3D new Integer(tag); > > > // List possibleMatches =3D (List) EXIF_TAG_MAP.get(key); > > List possibleMatches =3D (List) ALL_TAG_MAP.get(key); //bd > > > if (null =3D=3D possibleMatches) > > { > > return TIFF_TAG_UNKNOWN; > > } > > > TagInfo result =3D getTag(directoryType, tag, possibleMatches); > > return result; > > } >