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
March 2010

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

2010.03.19 12:12 "Reading metadata", by Magnus Bergman Jamtli
2010.03.19 13:13 "Re: Reading metadata", by Lee Cooper
2010.03.19 13:23 "Re: Reading metadata", by Olivier Paquet
2010.03.19 15:47 "Re: Reading metadata", by Bob Friesenhahn

2010.03.19 12:12 "Reading metadata", by Magnus Bergman Jamtli

I'm writing an application which reads metadata from quite large amounts
of image-files (a hundred or so at a time). This can be done in a generic
way using either gdk-pixbuf (included in GTK+) or GNU libextractor. Both
of these uses libtiff then reading metadata from tiff-images. The problem
is that libtiff has no API to read the metadata without both reading and
decoding the whole image. This is very significant for my application
since it's often used on tiff-images of sizes near 100MB each. What I did
was to detect tiff-images in advance and handled them specially by
accessing the tags directly. This was quite simple and solved the problem,
but it was more of a workaround than a real solution. The functionality of
accessing the tags directly should rather go in:

1) Be a part of the libtiff library.

2) Go into the metadata reading libraries (gdk-pixbuf, GNU libextractor
and probably others).

Are there any opinions on this?