2014.04.06 19:53 "[Tiff] Building libtiff 4.0.3 dll on mingw win32", by Lyndon Hill

2014.05.09 08:20 "Re: [Tiff] compiling for bigtiff?", by John

On 9 May 2014 08:14, kaefert@gmail.com <kaefert@gmail.com> wrote:

But it still fails to write an output tiff file that would be bigger than 4GB. Do I need some special configure switch to enable bigtiff?

libtiff4 will write a smalltiff file by default. Bigtiff is not a compatible format, you need to specifically ask for it. Swap:

   output = TIFFOpen( output_filename, "w" );

for

   output = TIFFOpen( output_filename, "w8" );

enblend will need to set this flag and I guess they'll need a bit of GUI to let people turn it on or off.

John