AWARE SYSTEMS
TIFF and LibTiff Mail List Archive

Thread

2004.09.01 05:23 "[Tiff] DPI setting", by Poom
2004.09.01 08:50 "RE: [Tiff] DPI setting", by Patrick Harris
2004.09.01 08:59 "Re: [Tiff] DPI setting", by Poom
2004.09.01 17:08 "Re: [Tiff] DPI setting", by Andrey Kiselev
2004.09.01 13:55 "Re: [Tiff] DPI setting", by Frank Warmerdam

2004.09.01 08:50 "RE: [Tiff] DPI setting", by Patrick Harris

Poom,

I made exactly the same mistake. The tags TIFFTAG_XRESOLUTION and TIFFTAG_YRESOLUTION expect floating point values so by passing an integer value of 300 the library will not correctly set the tags. Try casting to float type static_cast< float >( 300 ) as this fixed it for me.

HTH

Patrick