2004.12.22 23:42 "[Tiff] problems populating a large 3D array", by S Smith

2004.12.23 23:37 "[Tiff] Re: problems populating a large 3D array", by S Smith

Okay, got it... I was trying to simply open new files on each iteration and overwrite the existing tif in memory. This worked okay, but only out to 2046 iterations (2^12 - 2, I have no idea where that number comes from in the code).

The proper way to do things is to close the tif on each iteration, calling "TIFFClose(tif);" Duh.