UNPKG

tiff

Version:

TIFF image decoder written entirely in JavaScript

12 lines (9 loc) 307 B
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;