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
September 2003

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

2003.09.30 14:38 "how can i show the different TIFF tile image on the computer screen?", by Zuyuan Wang
2003.09.30 15:27 "how can i show the different TIFF tile image on the computer screen?", by Kai-uwe Behrmann
2003.09.30 17:21 "how can i show the different TIFF tile image on the computer screen?", by Andrey Kiselev

2003.09.30 15:27 "how can i show the different TIFF tile image on the computer screen?", by Kai-uwe Behrmann

Am 30.09.03, 16:38 +0200 schrieb Zuyuan Wang:

> Dear all,
> I am the new libtiff study. What I have done till now is that I can read
> out the different tile data from the different directory. But I don't know
> what the tile data is, how can I show it on the screen? Is it possible for
> me to read the image as one whole part? Waiting for your reply.... I am
> very confused about the TIFF format....

Tiff is an complex format to serve very different needs.

The most simple way to read tiff data is with
      TIFFReadRGBAImage(tif, width, height, buffer, 0);
all data are represented as RGB with alpha, 8 bit.

The tile interface is to speed up the reading for tiffs saved in an tiled
fashion (versus stripped tiffs - the other way to store data in tiffs).

To read more look in the documentation html/libtiff.html. It is very
helpful.


regards
Kai-Uwe Behrmann