@woss/exiftool - v0.3.1
    Preparing search index...

    Interface TiffParseOptions

    Optional container-level behaviours for parseTiff. TIFF-based RAW containers (DNG, CR2, NEF, …) need SubIFD chains (where raw image tags live), embedded XMP, and Panasonic's non-42 magic; JPEG/PNG/WebP/AVIF embedded-Exif callers omit it and keep the default behaviour.

    interface TiffParseOptions {
        subIfds?: boolean;
        xmp?: boolean;
        panasonic?: boolean;
        makerNotes?: boolean;
    }
    Index
    subIfds?: boolean

    Walk IFD0 tag 0x014a (SubIFDs, incl. one chained level) and emit their entries.

    xmp?: boolean

    Decode IFD0 tag 0x02bc (XMP packet) into flattened tags.

    panasonic?: boolean

    Accept Panasonic magic 85 ('IIU\0') in addition to 42.

    makerNotes?: boolean

    Decode vendor MakerNotes (ExifIFD 0x927c and format-specific carriers). Default true — opt out for a raw-marker-free parse.