AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
December 2005

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2005.12.12 22:19 "Writing EXIF data?", by Paul J Lucas
2005.12.12 22:49 "Re: Writing EXIF data?", by Bob Friesenhahn
2005.12.12 22:57 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.12 23:47 "Re: Writing EXIF data?", by Bob Friesenhahn
2005.12.13 02:15 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 05:22 "Re: Writing EXIF data?", by Bob Friesenhahn
2005.12.13 07:43 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 08:57 "Re: Writing EXIF data?", by Andrey Kiselev
2005.12.13 16:28 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 17:22 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 18:16 "Re: Writing EXIF data?", by Bob Friesenhahn
2005.12.13 05:24 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 07:49 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 15:07 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 17:31 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 18:08 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 18:13 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 18:25 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 19:49 "Re: Writing EXIF data?", by Lou Sakey
2005.12.13 20:27 "Re: Writing EXIF data?", by Joris Van Damme
2005.12.13 21:24 "Re: Writing EXIF data?", by Lou Sakey
2005.12.13 20:04 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 20:47 "Re: Writing EXIF data?", by Andrey Kiselev
2005.12.13 18:19 "Re: Writing EXIF data?", by Joshua Muskovitz
2005.12.13 20:23 "Re: Writing EXIF data?", by Paul J Lucas
2005.12.13 21:08 "Re: Writing EXIF data?", by Andrey Kiselev
2005.12.13 18:16 "Re: Writing EXIF data?", by Joshua Muskovitz
2005.12.13 18:40 "Re: Writing EXIF data?", by Chris Losinger

2005.12.13 20:04 "Re: Writing EXIF data?", by Paul J Lucas

> > No it doesnt since all the offsets inside the EXIF IFD are
> > relative to its start.
> 
> For the sake of other mailing list subscribers and archive users: the
> above quote is incorrect information.

No it isn't.  Here's proof.  Take the JPEG image at:

      http://homepage.mac.com/pauljlucas/temp/bugs054.jpg

Within that image, let's take the CameraMake EXIF tag (010F.H).
It's located at absolute offset 0022.H.  Seven bytes later at
offset 002A.H is the offset value 0116.H.  If you skip ahead to
that offset treating it as absolute, you do *not* find the
metadata for the camera make.  The actual data is 12 bytes
later at absolute offset 0122.H where it says "NIKON".  The
discrepancy is 12 bytes.

Inside a JPEG file, the EXIF metadata is inside the APP1
segment.  This segment starts at absolute offset 0002.H where
you find the bytes FF E1.  Following that is the EXIF header for
10 bytes: those 10 plus the APP1 segment length is 12 bytes
which exactly matches the discrepancy.
	
Therefore, all EXIF metadata offsets for tag values larger than
4 bytes are *relative* to the start of the EXIF metadata.

	- Paul