Install & Compatibility
Where this runs
tested against v1.34.2 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
open
✓ from large_image import open
✗ from large_image import source
getTileSource
✓ from large_image import getTileSource
canRead
✓ from large_image import canRead
Opens a multiresolution image and retrieves a tile and a region.
from large_image import getTileSource
# Open an image (replace with a path to a large image)
source = getTileSource('path/to/large_image.svs')
print('Image metadata:', source.getMetadata())
# Get a tile (x, y, z) - e.g., tile at top-left of level 0
tile = source.getTile(0, 0, 0)
print('Tile shape:', tile.shape)
# Get a region (format: {'left', 'top', 'right', 'bottom'})
region = source.getRegion(region={'left': 0, 'top': 0, 'right': 256, 'bottom': 256})
print('Region shape:', region.shape)
Upgrade
Version history
1.34.2latest on PyPI · released Jun 2, 2026
Audit
Dependencies
numpyrequiredUsed for image array operations
PillowrequiredUsed for basic image I/O
girderoptionalOptional Girder integration for server-side image serving
openslide-pythonoptionalOptional support for SVS/OME-TIFF via OpenSlide
tifffileoptionalOptional support for TIFF files