yigolden / TiffLibrary

C# library for decoding and encoding Tag Image File Format (TIFF) files.
MIT License
58 stars 16 forks source link

Add the possibility to inject a ITiffPixelBufferReader to optimize large tile based tiffs #18

Open donin1129 opened 4 months ago

donin1129 commented 4 months ago

I encountered a problem encoding a very large tiled image. First there is a performance issue forcing the usage of MemoryBuffer. Second, the MemoryBuffer has max array size that is System.Int32.MaxValue.

In this commit, I added the following: