Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2/4 Support BigTIFF encoded TIFF data #584

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Jul 20, 2024

  1. Simplify TIFF processing by 'shifting' base of indexed reader, rather…

    … than passing TIFF header offsets around everywhere.
    don-vip committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    3a975db View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Configuration menu
    Copy the full SHA
    675ab95 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Add IndexedReader.GetUInt64

    don-vip committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    f5ddfcd View commit details
    Browse the repository at this point in the history
  2. Support BigTIFF encoded TIFF data

    Note that while BigTIFF supports files greater than 2 GiB in size, our current implementation does not due to the pervasive use of Int32 throughout the code to represent offsets into the data.
    don-vip committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    6964deb View commit details
    Browse the repository at this point in the history
  3. Change ITiffHandler.SetTiffMarker to accept ushort

    This will only ever be a 16-bit value.
    don-vip committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    dec9b6b View commit details
    Browse the repository at this point in the history
  4. Pass Set for processed IFD offsets

    This allows combining the add and test operations into a single lookup.
    don-vip committed Jul 29, 2024
    Configuration menu
    Copy the full SHA
    499ea8a View commit details
    Browse the repository at this point in the history