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
January 2006

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

2006.01.03 11:52 "Strip Vs Tile", by Sonia S Kumar
2006.01.03 14:47 "Re: Strip Vs Tile", by Bernie Pallek
2006.01.03 16:37 "Re: Strip Vs Tile", by Joris Van Damme
2006.01.03 18:42 "Re: Strip Vs Tile", by Bernie Pallek
2006.01.04 18:57 "Re: Strip Vs Tile", by Chris Cox
2006.01.04 20:14 "Re: Strip Vs Tile", by Andrey Kiselev
2006.01.03 16:09 "Re: Strip Vs Tile", by Bob Friesenhahn

2006.01.03 14:47 "Re: Strip Vs Tile", by Bernie Pallek

> My Query is regarding the layout of Tiff Images.
> When to save a Tiff image as Tiled and when to save 
> a Tiff image as Strip ??
> While saving, should we consider the layout of the 
> original Tiff image which we opened ??

The TIFF spec 6.0 recommends a strip size of 8K (before compression).  As
far as deciding when to do multi-strip, you should consider your targets for
the image data -- what platforms will deal with the images?  If these
platforms have limitations like the old real-mode Intel 64K segmentation,
you'll probably want to do multi-strip for all images.  If your images are
going to be processed by flat-memory devices with reasonably fast storage
media, multi-strip probably won't be useful until your images exceed 512K in
size.

When saving data in general, IMO, you should try to preserve as much of the
original "framing" as possible.  In other words, preserve byte-ordering,
stripping, compression format, IFD layout, whatever offsets you can, and
even any custom tags that your software may not understand or care about. 
The TIFF format is very suited to this "preservation" idea.  On the other
hand, it really depends on your problem.  Perhaps your goal is to
"standardize" the format of your images...