A TIFF tile source plugin for the large-image library, enabling efficient reading of tiled TIFF images (including BigTIFF, GeoTIFF, and multi-resolution pyramids). Current version: 1.34.1. Released as part of the large-image ecosystem; follows the main library's release cadence (approximately monthly).
pip install large-image-source-tiffNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: create a TiffFileTileSource and retrieve a tile.
Install with: pip install large-image-source-tiff[jpeg] or ensure your TIFF is tiled and uncompressed.
Set before import: os.environ['LARGE_IMAGE_TIFF_READER'] = 'tifffile'
Use the library with large-image directly; avoid relying on Girder-specific features.
Upgrade to v1.34.1 or later; or use getRegion() with larger region requests.
pip install large-image-source-tiff
Verify file integrity, ensure TIFF is tiled, and install jpeg support: pip install large-image-source-tiff[jpeg]
Correct import: from large_image_source_tiff import TiffFileTileSource
Use source.getMetadata() to check tile size and level dimensions; specify correct level in getTile(x, y, level).