| AWARE [SYSTEMS] | Imaging expertise for the Delphi developer | |||||||
![]() |
TIFF and LibTiff Mailing List Archive | |||||||
LibTiff Mailing List
TIFF and LibTiff Mailing List Archive Contact
The TIFF Mailing List Homepage |
Thread2003.09.30 15:27 "how can i show the different TIFF tile image on the computer screen?", by Kai-uwe BehrmannAm 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
|
|||||||