TIFF¶
async_tiff.TIFF ¶
ifds
property
¶
ifds: list[ImageFileDirectory]
Access the underlying IFDs of this TIFF.
Each ImageFileDirectory (IFD) represents one of the internal "sub images" of this file.
fetch_tile
async
¶
fetch_tiles
async
¶
open
async
classmethod
¶
open(
path: str, *, store: ObjectStore | ObspecInput, prefetch: int = 32768
) -> TIFF
Open a new TIFF.
Parameters:
-
path(str) –The path within the store to read from.
-
store(ObjectStore | ObspecInput) –The backend to use for data fetching.
-
prefetch(int, default:32768) –The number of initial bytes to read up front.
Returns:
-
TIFF–A TIFF instance.