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
December 2004

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

2004.12.08 02:35 "Q: writing tiled TIFFs", by Chris Losinger
2004.12.08 02:51 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.08 02:55 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.08 02:57 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.08 08:00 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.08 15:56 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.09 07:28 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.08 10:01 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.08 12:41 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.08 12:48 "Re: Q: writing tiled TIFFs", by Joris Van Damme
2004.12.09 02:30 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.09 07:27 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.09 10:12 "Re: Q: writing tiled TIFFs", by Joris Van Damme
2004.12.09 12:48 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.09 13:19 "Re: Q: writing tiled TIFFs", by Joris Van Damme
2004.12.09 13:38 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.09 14:01 "Re: Q: writing tiled TIFFs", by Joris Van Damme
2004.12.09 23:09 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.09 23:29 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.10 06:53 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.10 21:28 "Re: Q: writing tiled TIFFs", by Andrey Kiselev
2004.12.10 21:52 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.10 21:55 "Re: Q: writing tiled TIFFs", by Andrey Kiselev
2004.12.10 21:54 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.10 21:47 "Re: Q: writing tiled TIFFs", by Andrey Kiselev
2004.12.10 21:56 "Re: Q: writing tiled TIFFs", by Bob Friesenhahn
2004.12.10 21:41 "Re: Q: writing tiled TIFFs", by Andrey Kiselev
2004.12.08 13:49 "Re: Q: writing tiled TIFFs", by Sachin Garg
2004.12.08 13:22 "Re: Q: writing tiled TIFFs", by Chris Losinger
2004.12.08 14:05 "Re: Q: writing tiled TIFFs", by Sachin Garg

2004.12.10 21:47 "Re: Q: writing tiled TIFFs", by Andrey Kiselev

> > > 256x256 is apparently the LibTiff default. why does LibTiff choose
> > > that for a 200x200 image ? i don't know.
> > 
> > How do you arrive at this 'LibTiff default'?
> 
> // set image dims
> TIFFSetField(tiff, TIFFTAG_IMAGEWIDTH, (uint32) nWidth);
> TIFFSetField(tiff, TIFFTAG_IMAGELENGTH, (uint32) nHeight);
> 
> // get default tile size
> uint32 tilewidth, tileheight;
> tilewidth = 0;
> tileheight = 0;
> TIFFDefaultTileSize(tiff, &tilewidth, &tileheight);
> 
> // use that size
> TIFFSetField(tiff, TIFFTAG_TILEWIDTH, tilewidth);
> TIFFSetField(tiff, TIFFTAG_TILELENGTH, tileheight);

libtiff uses 256x256 tiles by default, but specification does not define
any default value for this tag, so it is better to set this values
manually. I can add logic to limit the tile size by the image
dimensions, but I'm not sure it is necessary.

						Andrey

-- 
Andrey V. Kiselev
Home phone:  +7 812 5970603  ICQ# 26871517