2020.02.05 04:07 "[Tiff] Inhaling an image all at once in scanline format", by David C. Partridge

2020.02.05 09:14 "Re: [Tiff] Inhaling an image all at once in scanline format", by John

Hello David,

I would allocate the memory for the image, then get the number of strips and call TIFFReadEncodedStrip() for each one, stepping the pointer down your memory array.

This is what TIFFReadScanline() does internally, just with an extra strip buffer.

John