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 2011

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

2011.03.21 19:22 "Lab based colormaps", by Steve Underwood
2011.03.22 03:29 "Re: Lab based colormaps", by Bob Friesenhahn
2011.03.22 04:01 "Re: Lab based colormaps", by Steve Underwood
2011.03.22 13:58 "Re: Lab based colormaps", by Bob Friesenhahn
2011.03.28 18:16 "Re: Lab based colormaps", by Steve Underwood

2011.03.21 19:22 "Lab based colormaps", by Steve Underwood

Hi,

RGB colormaps in TIFF files are specified as being the order min red -> 
max red, min green -> max green, and min blue->max blue. Getting the 
TIFFTAG_COLORMAP tag in libtiff returns a set of three pointers to the 
those red, green and blue sequences, and all seems well where I have 
tried this.

Right now I am working with the test files for TIFF-FX (RFC2301). One of 
these files, l04x_02x.tif, contains an indexed T.43 compressed image. 
The "indexed" tag (346) is set, and the photometric is set to ITULAB. 
Therefore the colormap should be in Lab format, with the ITU gamut. I am 
getting basically the right image after decompression, but with the 
colours scrambled. Obviously libtiff doesn't understand the T.43 
compressed data right now. I am using libtiff to read it raw, and using 
a separate JBIG decoder to recover the decompressed indexed image. I'm 
pretty confident that part is OK, because if I reinterpret the colour 
map I can get a sane looking picture.Here is the oddity.....

If I use libtiff to read the colormap it gives me three arrays, each 256 
elements long, just as would happen for an RGB colour map. If I try to 
interpret these as the L, a, and b arrays, I get crazy colours. If, 
however, I reorder the data as if the TIFF file contains the colour 
table in the order L[0], a[0], b[0], L[1], a[1], b[1], etc. the 
resulting image looks OK. I can't see in the TIFF spec, or the extension 
specs, where the order of Lab colormap data is defined. However, it 
would seem bizarre if it is not in the same order as RGB data.

Has anyone had similar experiences? The test files are supposed to have 
been used for interworking tests with several FAX makers, so I would 
have expected anything as blatantly wrong as this to have been caught 
and fixed.

Steve