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 | None = 16384
) -> 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 | None
, default:16384
) –The number of initial bytes to read up front. Defaults to 16384.
Returns:
-
TIFF
–A TIFF instance.