You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Options for initializing a tiff pixel source. */
14
+
interfaceGeoTIFFOptions{
15
+
/** Headers passed to each underlying request. */
14
16
headers?: Record<string,unknown>;
17
+
/** Performance enhancment to index the remote tiff source using pre-computed byte-offsets. Generated via https://github.com/ilan-gold/generate-tiff-offsets */
15
18
offsets?: number[];
19
+
/** Indicates whether a multi-threaded pool of image decoders should be used to decode tiles. */
16
20
pool?: boolean;
17
21
}
18
22
23
+
interfaceGeoTIFFData{
24
+
data: TiffPixelSource<string[]>[];
25
+
metadata: Record<string,unknown>;
26
+
}
27
+
19
28
/**
20
29
* Opens an OME-TIFF via URL and returns data source and associated metadata for first image.
21
30
*
22
-
* @param{(string | File)} source url or File object.
0 commit comments