tiff
Version:
TIFF image decoder written entirely in JavaScript
10 lines • 350 B
TypeScript
export interface DecodeOptions {
ignoreImageData?: boolean;
/**
* Specify the indices of the pages to decode in case of a multi-page TIFF.
*/
pages?: number[];
}
export type IFDKind = 'standard' | 'exif' | 'gps';
export type DataArray = Uint8Array | Uint16Array | Float32Array | Float64Array;
//# sourceMappingURL=types.d.ts.map