modern-pdf-lib 0.30.0 → 0.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10920,8 +10920,482 @@ declare function buildImageSoftMask(registry: PdfObjectRegistry, gray: Uint8Arra
10920
10920
  * @returns An ExtGState {@link PdfDict}.
10921
10921
  */
10922
10922
  declare function buildBlackPointCompensationExtGState(mode: "Default" | "ON" | "OFF"): PdfDict;
10923
+ //#endregion
10924
+ //#region src/accessibility/taggingHelpers.d.ts
10925
+ /**
10926
+ * The set of values that the PDF list-attribute `/ListNumbering` may
10927
+ * take (ISO 32000, Table 384, owner `/List`). These determine how a
10928
+ * list's item labels are presented to assistive technology:
10929
+ *
10930
+ * - `None` — no autogenerated numbering (labels are explicit).
10931
+ * - `Disc`, `Circle`, `Square` — unordered bullet glyphs.
10932
+ * - `Decimal` — `1`, `2`, `3`, …
10933
+ * - `UpperRoman` — `I`, `II`, `III`, …
10934
+ * - `LowerRoman` — `i`, `ii`, `iii`, …
10935
+ * - `UpperAlpha` — `A`, `B`, `C`, …
10936
+ * - `LowerAlpha` — `a`, `b`, `c`, …
10937
+ */
10938
+ type ListNumbering = "None" | "Disc" | "Circle" | "Square" | "Decimal" | "UpperRoman" | "LowerRoman" | "UpperAlpha" | "LowerAlpha";
10939
+ /**
10940
+ * The property key under which {@link tagList} records the chosen
10941
+ * {@link ListNumbering} on a list element's `options` object.
10942
+ *
10943
+ * `StructureElementOptions` has no dedicated `listNumbering` field, so
10944
+ * the value is stored as an extra (string-keyed) property on the same
10945
+ * options object. When the structure tree is serialized this is the
10946
+ * value an attribute writer should emit as the list's `/ListNumbering`
10947
+ * entry inside an `/A` attribute dictionary whose owner is `/List`
10948
+ * (ISO 32000, Table 384):
10949
+ *
10950
+ * ```
10951
+ * /A << /O /List /ListNumbering /Decimal >>
10952
+ * ```
10953
+ *
10954
+ * Using a well-known string key (rather than a `Symbol`) keeps the
10955
+ * value plain-serializable and inspectable from tests.
10956
+ */
10957
+ declare const LIST_NUMBERING_KEY: "__listNumbering";
10958
+ /**
10959
+ * Tag a heading element of the given level.
10960
+ *
10961
+ * @param tree The structure tree to add the element to.
10962
+ * @param parent The parent element, or `null` to add under the root
10963
+ * `Document` element.
10964
+ * @param level The heading level (`1`..`6`); maps to `H1`..`H6`.
10965
+ * @param options Optional attributes (title, language, id, …).
10966
+ * @returns The newly created heading element (type `H1`..`H6`).
10967
+ *
10968
+ * @example
10969
+ * ```ts
10970
+ * const tree = doc.createStructureTree();
10971
+ * const h2 = tagHeading(tree, null, 2, { title: 'Background' });
10972
+ * // h2.type === 'H2'
10973
+ * ```
10974
+ */
10975
+ declare function tagHeading(tree: PdfStructureTree, parent: PdfStructureElement | null, level: 1 | 2 | 3 | 4 | 5 | 6, options?: StructureElementOptions): PdfStructureElement;
10976
+ /**
10977
+ * Tag a paragraph (`P`) element.
10978
+ *
10979
+ * @param tree The structure tree to add the element to.
10980
+ * @param parent The parent element, or `null` for the root.
10981
+ * @param options Optional attributes.
10982
+ * @returns The newly created `P` element.
10983
+ */
10984
+ declare function tagParagraph(tree: PdfStructureTree, parent: PdfStructureElement | null, options?: StructureElementOptions): PdfStructureElement;
10985
+ /**
10986
+ * Tag a figure (`Figure`) element with alternative text.
10987
+ *
10988
+ * The `altText` argument is required because PDF/UA mandates
10989
+ * alternative text for illustration elements. If the caller also
10990
+ * supplies `altText` in `options`, that explicit value takes
10991
+ * precedence over the positional argument.
10992
+ *
10993
+ * @param tree The structure tree to add the element to.
10994
+ * @param parent The parent element, or `null` for the root.
10995
+ * @param altText Alternative text describing the figure.
10996
+ * @param options Optional additional attributes.
10997
+ * @returns The newly created `Figure` element with `/Alt` set.
10998
+ */
10999
+ declare function tagFigure(tree: PdfStructureTree, parent: PdfStructureElement | null, altText: string, options?: StructureElementOptions): PdfStructureElement;
11000
+ /**
11001
+ * Tag a link (`Link`) element.
11002
+ *
11003
+ * @param tree The structure tree to add the element to.
11004
+ * @param parent The parent element, or `null` for the root.
11005
+ * @param options Optional attributes.
11006
+ * @returns The newly created `Link` element.
11007
+ */
11008
+ declare function tagLink(tree: PdfStructureTree, parent: PdfStructureElement | null, options?: StructureElementOptions): PdfStructureElement;
11009
+ /**
11010
+ * Tag a list (`L`) element and record its numbering style.
11011
+ *
11012
+ * The chosen {@link ListNumbering} is stored on the returned element's
11013
+ * `options` object under {@link LIST_NUMBERING_KEY} (since
11014
+ * `StructureElementOptions` has no dedicated field). A serializer can
11015
+ * emit it as the list's `/ListNumbering` attribute (ISO 32000,
11016
+ * Table 384) inside an `/A` dictionary owned by `/List`.
11017
+ *
11018
+ * @param tree The structure tree to add the element to.
11019
+ * @param parent The parent element, or `null` for the root.
11020
+ * @param numbering The list numbering style (default `'None'`).
11021
+ * @param options Optional additional attributes.
11022
+ * @returns The newly created `L` element.
11023
+ */
11024
+ declare function tagList(tree: PdfStructureTree, parent: PdfStructureElement | null, numbering?: ListNumbering, options?: StructureElementOptions): PdfStructureElement;
11025
+ /**
11026
+ * The constituent elements created for a single list item by
11027
+ * {@link tagListItem}.
11028
+ */
11029
+ interface TaggedListItem {
11030
+ /** The `LI` (list item) element. */
11031
+ readonly item: PdfStructureElement;
11032
+ /** The `Lbl` (label) element — the item's bullet/number. */
11033
+ readonly label: PdfStructureElement;
11034
+ /** The `LBody` (list body) element — the item's content. */
11035
+ readonly body: PdfStructureElement;
11036
+ }
11037
+ /**
11038
+ * Tag a list item under a list, building the conventional
11039
+ * `LI` → (`Lbl`, `LBody`) substructure.
11040
+ *
11041
+ * @param tree The structure tree to add the elements to.
11042
+ * @param list The parent `L` (list) element.
11043
+ * @param options Optional attributes for the `LI` element.
11044
+ * @returns The created `item` (`LI`), `label` (`Lbl`) and
11045
+ * `body` (`LBody`) elements.
11046
+ *
11047
+ * @example
11048
+ * ```ts
11049
+ * const list = tagList(tree, null, 'Decimal');
11050
+ * const { item, label, body } = tagListItem(tree, list);
11051
+ * // item.type === 'LI', label.type === 'Lbl', body.type === 'LBody'
11052
+ * ```
11053
+ */
11054
+ declare function tagListItem(tree: PdfStructureTree, list: PdfStructureElement, options?: StructureElementOptions): TaggedListItem;
11055
+ /**
11056
+ * Tag a table (`Table`) element.
11057
+ *
11058
+ * @param tree The structure tree to add the element to.
11059
+ * @param parent The parent element, or `null` for the root.
11060
+ * @param options Optional attributes.
11061
+ * @returns The newly created `Table` element.
11062
+ */
11063
+ declare function tagTable(tree: PdfStructureTree, parent: PdfStructureElement | null, options?: StructureElementOptions): PdfStructureElement;
11064
+ /**
11065
+ * Tag a table row (`TR`) under a table.
11066
+ *
11067
+ * @param tree The structure tree to add the element to.
11068
+ * @param table The parent `Table` element.
11069
+ * @returns The newly created `TR` element.
11070
+ */
11071
+ declare function tagTableRow(tree: PdfStructureTree, table: PdfStructureElement): PdfStructureElement;
11072
+ /**
11073
+ * Tag a table header cell (`TH`) under a row, recording its scope.
11074
+ *
11075
+ * The `scope` is stored in the element's options (`/Scope` attribute,
11076
+ * one of `Row`, `Column`, or `Both`) and is used by table-header
11077
+ * validation to associate header cells with the cells they describe.
11078
+ *
11079
+ * @param tree The structure tree to add the element to.
11080
+ * @param row The parent `TR` element.
11081
+ * @param scope The header scope (default `'Column'`).
11082
+ * @param options Optional additional attributes (e.g. colSpan/rowSpan).
11083
+ * @returns The newly created `TH` element with `scope` set.
11084
+ */
11085
+ declare function tagTableHeaderCell(tree: PdfStructureTree, row: PdfStructureElement, scope?: "Row" | "Column" | "Both", options?: StructureElementOptions): PdfStructureElement;
11086
+ /**
11087
+ * Tag a table data cell (`TD`) under a row.
11088
+ *
11089
+ * @param tree The structure tree to add the element to.
11090
+ * @param row The parent `TR` element.
11091
+ * @param options Optional attributes (e.g. colSpan/rowSpan).
11092
+ * @returns The newly created `TD` element.
11093
+ */
11094
+ declare function tagTableDataCell(tree: PdfStructureTree, row: PdfStructureElement, options?: StructureElementOptions): PdfStructureElement;
11095
+ //#endregion
11096
+ //#region src/accessibility/pdfUa2.d.ts
11097
+ /**
11098
+ * A single PDF/UA-2 conformance issue.
11099
+ *
11100
+ * Every issue carries a machine-readable {@link code}, a human-readable
11101
+ * {@link message}, and the ISO 14289-2 {@link clause} the requirement is
11102
+ * drawn from.
11103
+ */
11104
+ interface PdfUa2Issue {
11105
+ /** Machine-readable issue code (e.g. `"UA2-STRUCT-001"`). */
11106
+ code: string;
11107
+ /** Human-readable description of the violation. */
11108
+ message: string;
11109
+ /** The ISO 14289-2 clause reference for the requirement. */
11110
+ clause: string;
11111
+ }
11112
+ /**
11113
+ * Result of a {@link validatePdfUa2} check.
11114
+ *
11115
+ * `conformant` is `true` only when there are no issues.
11116
+ */
11117
+ interface PdfUa2Result {
11118
+ /** Whether the document satisfies all PDF/UA-2 requirements checked. */
11119
+ conformant: boolean;
11120
+ /** The list of conformance issues (empty when conformant). */
11121
+ issues: PdfUa2Issue[];
11122
+ }
11123
+ /**
11124
+ * Validate a PDF document against PDF/UA-2 (ISO 14289-2) requirements.
11125
+ *
11126
+ * The check reuses {@link validatePdfUa} for the shared tagging, language,
11127
+ * MarkInfo, and metadata requirements, then layers the PDF 2.0 / UA-2
11128
+ * specific requirements on top:
11129
+ *
11130
+ * - **UA2-STRUCT-001** — a structure tree must exist (tagged PDF).
11131
+ * - **UA2-NS-001** — the structure tree must declare structure
11132
+ * `/Namespaces` (PDF/UA-2 builds on PDF 2.0 namespaces).
11133
+ * - **UA2-LANG-001** — the document must declare a natural language
11134
+ * (`/Lang`).
11135
+ * - **UA2-FIG-001** — every figure must carry alternative text.
11136
+ *
11137
+ * Each failure is mapped to an ISO 14289-2 clause string. The returned
11138
+ * result is `conformant` only when there are no issues.
11139
+ *
11140
+ * @param doc The PDF document to validate.
11141
+ * @returns A {@link PdfUa2Result} describing conformance and issues.
11142
+ *
11143
+ * @example
11144
+ * ```ts
11145
+ * import { createPdf } from 'modern-pdf-lib';
11146
+ * import { validatePdfUa2 } from 'modern-pdf-lib/accessibility';
11147
+ *
11148
+ * const doc = createPdf();
11149
+ * const result = validatePdfUa2(doc);
11150
+ * if (!result.conformant) {
11151
+ * for (const issue of result.issues) {
11152
+ * console.error(`[${issue.code}] ${issue.message} (§${issue.clause})`);
11153
+ * }
11154
+ * }
11155
+ * ```
11156
+ */
11157
+ declare function validatePdfUa2(doc: PdfDocument): PdfUa2Result;
11158
+ /**
11159
+ * Build an XMP packet (RDF/XML) that identifies a document as PDF/UA-2.
11160
+ *
11161
+ * The packet declares the AIIM PDF/UA identification schema
11162
+ * (`pdfuaid`, namespace `http://www.aiim.org/pdfua/ns/id/`) with:
11163
+ *
11164
+ * - `pdfuaid:part` = `2` — the PDF/UA part (ISO 14289-2);
11165
+ * - `pdfuaid:rev` = the revision year of the standard.
11166
+ *
11167
+ * The result is a serialized, packet-wrapped XMP string suitable for
11168
+ * embedding as the document's `/Metadata` stream.
11169
+ *
11170
+ * @returns The serialized PDF/UA-2 identification XMP packet.
11171
+ *
11172
+ * @example
11173
+ * ```ts
11174
+ * import { buildPdfUa2Xmp } from 'modern-pdf-lib/accessibility';
11175
+ *
11176
+ * doc.setXmpMetadata(buildPdfUa2Xmp());
11177
+ * ```
11178
+ */
11179
+ declare function buildPdfUa2Xmp(): string;
11180
+ //#endregion
11181
+ //#region src/accessibility/autoTag.d.ts
11182
+ /**
11183
+ * Options controlling heuristic auto-tagging.
11184
+ */
11185
+ interface AutoTagOptions {
11186
+ /**
11187
+ * A text run whose font size is `>= headingScale × bodySize` is treated
11188
+ * as a heading. The body size is the most common (median) font size on
11189
+ * the page. Defaults to `1.2` (a run 20% larger than body text is a
11190
+ * heading).
11191
+ */
11192
+ headingScale?: number | undefined;
11193
+ }
11194
+ /**
11195
+ * Summary of what {@link autoTagPage} inferred and added to the structure
11196
+ * tree.
11197
+ */
11198
+ interface AutoTagResult {
11199
+ /** Number of heading (`H1`..`H6`) elements added. */
11200
+ headings: number;
11201
+ /** Number of paragraph (`P`) elements added. */
11202
+ paragraphs: number;
11203
+ /** Total number of structure elements added (headings + paragraphs). */
11204
+ elements: number;
11205
+ }
11206
+ /**
11207
+ * Infer a coarse logical structure for a single untagged page and add the
11208
+ * inferred `H1`..`H6` and `P` elements to the document's structure tree.
11209
+ *
11210
+ * The procedure:
11211
+ * 1. Interpret the page into positioned text runs.
11212
+ * 2. Group runs into visual lines by their baseline y-position.
11213
+ * 3. Determine the body font size as the median run font size.
11214
+ * 4. Order lines top-to-bottom (reading order on a y-up page).
11215
+ * 5. Classify each line as a heading (font size `>= headingScale × body`)
11216
+ * or body text; map distinct heading sizes to `H1`..`H6`
11217
+ * (largest → `H1`).
11218
+ * 6. Emit one heading element per heading line and one `P` element per
11219
+ * contiguous block of body lines.
11220
+ *
11221
+ * Never throws on an empty (or text-free) page — it returns all-zero
11222
+ * counts and leaves the structure tree untouched.
11223
+ *
11224
+ * @param doc The document containing the page.
11225
+ * @param pageIndex Zero-based index of the page to tag.
11226
+ * @param options Optional heuristic tuning ({@link AutoTagOptions}).
11227
+ * @returns Counts of the elements that were added.
11228
+ */
11229
+ declare function autoTagPage(doc: PdfDocument, pageIndex: number, options?: AutoTagOptions): AutoTagResult;
11230
+ //#endregion
11231
+ //#region src/compliance/profileConvert.d.ts
11232
+ /**
11233
+ * A single preflight finding produced by {@link preflightPdfA}.
11234
+ *
11235
+ * `code` mirrors the `PDFA-0xx` vocabulary of the byte-level `validatePdfA`
11236
+ * validator. `fixable` indicates whether a downstream enforcement step can
11237
+ * resolve the issue automatically. `clause` is an optional ISO clause hint.
11238
+ */
11239
+ interface PreflightIssue {
11240
+ readonly code: string;
11241
+ readonly message: string;
11242
+ readonly severity: "error" | "warning";
11243
+ readonly fixable: boolean;
11244
+ readonly clause?: string | undefined;
11245
+ }
11246
+ /**
11247
+ * Run a synchronous, pre-save PDF/A preflight over an in-memory document.
11248
+ *
11249
+ * See the module documentation for the (intentional) scope and limitations of
11250
+ * this check relative to the byte-level `validatePdfA` validator.
11251
+ *
11252
+ * @param doc - The in-memory document to inspect. Never mutated.
11253
+ * @param level - Optional target level (e.g. `'2b'`, `'3u'`, `'PDF/A-4'`).
11254
+ * Only used to refine messages; all checks here are
11255
+ * level-agnostic prerequisites common to every PDF/A part.
11256
+ * @returns A (possibly empty) list of preflight issues. Never throws.
11257
+ */
11258
+ declare function preflightPdfA(doc: PdfDocument, level?: string): PreflightIssue[];
11259
+ /**
11260
+ * Remap the PDF/A identification (`pdfaid:part`, and optionally
11261
+ * `pdfaid:conformance`) inside an existing XMP packet.
11262
+ *
11263
+ * Both the **attribute** form (`pdfaid:part="3"`) and the **element** form
11264
+ * (`<pdfaid:part>3</pdfaid:part>`) are handled. When no `pdfaid:part` is
11265
+ * present, identification is injected into the first `rdf:Description` element
11266
+ * (declaring the `pdfaid` namespace on it if necessary). All other content of
11267
+ * the packet is preserved verbatim.
11268
+ *
11269
+ * This is a pure string transform; it does not parse or re-serialize the XML.
11270
+ *
11271
+ * @param xmp - The source XMP packet string.
11272
+ * @param toPart - Target PDF/A part (1, 2, 3 or 4).
11273
+ * @param toConformance - Optional target conformance level (`a`/`b`/`u`). When
11274
+ * omitted, any existing conformance is left untouched.
11275
+ * @returns The transformed XMP packet string.
11276
+ */
11277
+ declare function convertPdfAConformanceXmp(xmp: string, toPart: 1 | 2 | 3 | 4, toConformance?: "a" | "b" | "u"): string;
11278
+ //#endregion
11279
+ //#region src/compliance/rasterProfile.d.ts
11280
+ /**
11281
+ * @module compliance/rasterProfile
11282
+ *
11283
+ * Identification XMP packet builders for two PDF 2.0-era conformance
11284
+ * profiles that, unlike PDF/A and PDF/UA, do **not** define their own
11285
+ * ISO `…id/`-style XMP identification namespace:
11286
+ *
11287
+ * - **WTPDF** — "Well-Tagged PDF" (PDF Association specification,
11288
+ * "Using Tagged PDF for Accessibility and Reuse in PDF 2.0", v1.0,
11289
+ * February 2024).
11290
+ * - **PDF/R** — "Raster image transport and storage" (ISO 23504-1:2020,
11291
+ * the ISO version of the PDF Association's PDF/Raster 1.0 spec).
11292
+ *
11293
+ * These builders emit *identification markers only*. They assert which
11294
+ * profile a document claims to follow; they do **not** validate or
11295
+ * guarantee conformance, and they do not mutate any PDF document.
11296
+ *
11297
+ * ---------------------------------------------------------------------------
11298
+ * WHAT IS VERIFIED vs. WHAT IS PROVISIONAL
11299
+ * ---------------------------------------------------------------------------
11300
+ *
11301
+ * VERIFIED (from primary / corroborated sources):
11302
+ *
11303
+ * - WTPDF conformance is asserted via the PDF Association **"PDF
11304
+ * Declarations"** mechanism embedded in document-level XMP — NOT via a
11305
+ * bespoke `pdfwtid:part`/`conformance` namespace. PDF Declarations use
11306
+ * the namespace prefix `pdfd` with namespace URI `http://pdfa.org/
11307
+ * declarations/`, an `pdfd:declarations` container holding an `rdf:Bag`
11308
+ * of declaration resources, each with a `pdfd:conformsTo` URI and an
11309
+ * optional `pdfd:claimData` block (`pdfd:claimBy`, `pdfd:claimDate`,
11310
+ * `pdfd:claimCredentials`, `pdfd:claimReport`).
11311
+ * (PDF Association, "PDF Declarations — A use of ISO 32000", 2019;
11312
+ * "Industry-recognized PDF Declarations".)
11313
+ *
11314
+ * - WTPDF 1.0 defines two conformance levels: **reuse** and
11315
+ * **accessibility**. (PDF Association WTPDF 1.0.)
11316
+ *
11317
+ * - PDF/R (ISO 23504 / PDF/Raster 1.0) is primarily identified by a
11318
+ * PDF *comment marker placed immediately before the final `startxref`*
11319
+ * in the file trailer — it has **no ISO-defined XMP identification
11320
+ * namespace**. (PDF Association, "PDF/raster: An Overview";
11321
+ * ISO 23504-1:2020.) Any XMP-based identification for PDF/R is therefore
11322
+ * non-normative.
11323
+ *
11324
+ * - The general ISO XMP identification pattern (used by `pdfaid` /
11325
+ * `pdfuaid`) renders an integer `part`, an optional 4-digit-year `rev`,
11326
+ * and a `conformance` token inside an `rdf:Description rdf:about=""`.
11327
+ *
11328
+ * PROVISIONAL / UNVERIFIED (clearly flagged; do not treat as normative):
11329
+ *
11330
+ * - The exact `pdfd:conformsTo` target URIs used below for WTPDF and
11331
+ * PDF/R. The WTPDF declaration URI form is *explicitly acknowledged as
11332
+ * inconsistent* in the source material: the PDF Association corrected it
11333
+ * from `http://pdfa.org/declarations#wtpdf-reuse1.0` to
11334
+ * `http://pdfa.org/declarations/wtpdf#reuse1.0`, and even the trailing
11335
+ * `/`-vs-`#` form remains contested (see pdf-association/pdf-issues
11336
+ * #395). We therefore treat the precise fragment as provisional.
11337
+ *
11338
+ * - No PDF/R `conformsTo` URI is published under the PDF Declarations
11339
+ * registry at the time of writing; the value used here follows the same
11340
+ * pattern and is provisional.
11341
+ *
11342
+ * Because of the above, callers MUST NOT rely on byte-for-byte matching of
11343
+ * the emitted `conformsTo` URIs for normative validation. The verified,
11344
+ * stable parts are the XMP envelope, the `pdfd` namespace/structure, and
11345
+ * the rendered `part`/`conformance` values.
11346
+ *
11347
+ * @see https://pdfa.org/wtpdf/
11348
+ * @see https://pdfa.org/resource/pdf-declarations/
11349
+ * @see https://pdfa.org/resource/iso-23504-pdfr/
11350
+ * @see https://github.com/pdf-association/pdf-issues/issues/395
11351
+ */
11352
+ /** Options for building a profile identification XMP packet. */
11353
+ interface ProfileXmpOptions {
11354
+ /**
11355
+ * The standard's part number. Defaults to `1`
11356
+ * (WTPDF 1.0 / ISO 23504-1, i.e. PDF/R-1).
11357
+ */
11358
+ part?: number | undefined;
11359
+ /**
11360
+ * The conformance level / token. Optional and free-form because these
11361
+ * profiles do not share a single normative conformance vocabulary
11362
+ * (e.g. WTPDF uses `'reuse'` | `'accessibility'`).
11363
+ */
11364
+ conformance?: string | undefined;
11365
+ }
11366
+ /**
11367
+ * Build a WTPDF ("Well-Tagged PDF") identification XMP packet.
11368
+ *
11369
+ * WTPDF conformance is asserted through the PDF Association's PDF
11370
+ * Declarations mechanism (VERIFIED). The `conformsTo` target URI is
11371
+ * PROVISIONAL — see the module doc comment and pdf-issues #395 for the
11372
+ * acknowledged inconsistency in its exact form. This builder produces an
11373
+ * identification marker only and does not assert or validate WTPDF
11374
+ * conformance.
11375
+ *
11376
+ * @param options - Optional part (default `1`, i.e. WTPDF 1.0) and a
11377
+ * conformance level (WTPDF defines `'reuse'` and `'accessibility'`).
11378
+ * @returns A serialized XMP/RDF identification packet.
11379
+ */
11380
+ declare function buildWtpdfIdentificationXmp(options?: ProfileXmpOptions): string;
11381
+ /**
11382
+ * Build a PDF/R (ISO 23504 / PDF/Raster) identification XMP packet.
11383
+ *
11384
+ * IMPORTANT: PDF/R is normatively identified by a comment marker before
11385
+ * the final `startxref` in the file trailer, NOT by XMP. There is no
11386
+ * ISO-defined XMP identification namespace for PDF/R, so this XMP marker
11387
+ * is non-normative: the `pdfd:conformsTo` target is PROVISIONAL. Use this
11388
+ * only as a supplementary, machine-readable hint alongside the required
11389
+ * trailer comment marker; it does not assert or validate PDF/R
11390
+ * conformance.
11391
+ *
11392
+ * @param options - Optional part (default `1`, i.e. ISO 23504-1 / PDF/R-1)
11393
+ * and a conformance token.
11394
+ * @returns A serialized XMP/RDF identification packet.
11395
+ */
11396
+ declare function buildPdfRIdentificationXmp(options?: ProfileXmpOptions): string;
10923
11397
  declare namespace index_d_exports {
10924
- export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DiffResult, DirectEmbedOptions, DirectEmbedResult, DisplayItem, DisplayList, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPayloadOptions, EncryptedPdfError, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FillItem, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontFileFormat, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageItem, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LabParams, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, Matrix, MdpPermission, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, OcrEngine, OcrWord, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageOutputIntentOptions, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PluginDocument, PluginError, PluginPage, PostScriptFunction, PrepareAppearanceOptions, PresetName, PresetOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionResult, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SarifLog, SarifResult, SarifRun, ScriptRun, SetTitleOptions, SignOptions, SignatureAlgorithm, SignatureAppearanceOptions, SignatureByteRange, SignatureChainEntry, SignatureChainResult, SignatureOptions, SignatureVerificationResult, SignerInfo, SoftMaskBuilder, SoftMaskGroupOptions, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StrokeItem, StructureElementOptions, StructureType, StyledBarcodeOptions, SubPath, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaskRunner, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextItem as TextDisplayItem, TextExtractionOptions, TextItem$1 as TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidationFinding, ValidationLevel, RenderOptions$1 as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, WrapperPayloadOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildColorKeyMask, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildImageSoftMask, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildSoftMaskGroupExtGState, buildSoftMaskNone, buildStencilMask, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildUnencryptedWrapper, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages$1 as extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages as extractPageImages, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate$1 as formatAcrobatDate, formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, registerEmbeddedFile, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
11398
+ export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, AutoTagOptions, AutoTagResult, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DiffResult, DirectEmbedOptions, DirectEmbedResult, DisplayItem, DisplayList, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPayloadOptions, EncryptedPdfError, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FillItem, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontFileFormat, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageItem, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LIST_NUMBERING_KEY, LabParams, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListNumbering, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, Matrix, MdpPermission, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, OcrEngine, OcrWord, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageOutputIntentOptions, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUa2Issue, PdfUa2Result, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PluginDocument, PluginError, PluginPage, PostScriptFunction, PreflightIssue, PrepareAppearanceOptions, PresetName, PresetOptions, ProfileXmpOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionResult, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SarifLog, SarifResult, SarifRun, ScriptRun, SetTitleOptions, SignOptions, SignatureAlgorithm, SignatureAppearanceOptions, SignatureByteRange, SignatureChainEntry, SignatureChainResult, SignatureOptions, SignatureVerificationResult, SignerInfo, SoftMaskBuilder, SoftMaskGroupOptions, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StrokeItem, StructureElementOptions, StructureType, StyledBarcodeOptions, SubPath, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaggedListItem, TaskRunner, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextItem as TextDisplayItem, TextExtractionOptions, TextItem$1 as TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidationFinding, ValidationLevel, RenderOptions$1 as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, WrapperPayloadOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, autoTagPage, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildColorKeyMask, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildImageSoftMask, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfRIdentificationXmp, buildPdfUa2Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildSoftMaskGroupExtGState, buildSoftMaskNone, buildStencilMask, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildUnencryptedWrapper, buildViewerPreferencesDict, buildVtDpm, buildWtpdfIdentificationXmp, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertPdfAConformanceXmp, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages$1 as extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages as extractPageImages, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate$1 as formatAcrobatDate, formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preflightPdfA, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, registerEmbeddedFile, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tagFigure, tagHeading, tagLink, tagList, tagListItem, tagParagraph, tagTable, tagTableDataCell, tagTableHeaderCell, tagTableRow, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfUa2, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
10925
11399
  }
10926
11400
  /**
10927
11401
  * Options for WASM module initialization.
@@ -10973,5 +11447,5 @@ interface InitWasmOptions {
10973
11447
  */
10974
11448
  declare function initWasm(options?: string | URL | InitWasmOptions): Promise<void>;
10975
11449
  //#endregion
10976
- export { interpretPage as $, valuesToModules as $a, detectModifications as $c, buildDeviceNColorSpace as $d, toRoman as $i, findSignatures as $l, Paragraph as $n, ImageDpi as $o, getInlineWasmSize as $r, XmpValidationResult as $s, ScriptRun as $t, aesDecryptCBC as $u, OcrWord as A, DataMatrixOptions as Aa, IncrementalChange as Ac, endMarkedContent as Ad, IncrementalSaveResult as Af, ExceededMaxLengthError as Ai, checkCertificateStatus as Al, buildPdfX6OutputIntent as An, isWebPLossless as Ao, buildRequirement as Ar, initJpegWasm as As, ExternalSigner as At, PdfUnderlineAnnotation as Au, extractImages as B, encodeEan13 as Ba, addCounterSignature as Bc, setCharacterSpacing as Bd, PluginError as Bi, encodeInteger as Bl, ExponentialFunction as Bn, detectImageFormat as Bo, accessibilityPlugin as Br, EnforcePdfAResult as Bs, buildVtDpm as Bt, AFNumber_Format as Bu, computeTileGrid as C, StyledBarcodeOptions as Ca, validatePdfA as Cc, beginArtifact as Cd, setLineJoin as Cf, FlattenOptions as Ci, extractEmbeddedRevocationData as Cl, generateCiiXml as Cn, decodeTiffPage as Co, MATHML_NAMESPACE as Cr, optimizeImage as Cs, WoffInfo as Ct, PdfLineAnnotation as Cu, redactRegions as D, Pdf417Options as Da, getLinearizationInfo as Dc, beginMarkedContentWithProperties as Dd, isOpenTypeCFF as Df, BatchProcessingError as Di, downloadCrl as Dl, PdfX6Variant as Dn, WebPImage as Do, buildNamespacesArray as Dr, JpegWasmModule as Ds, readWoffHeader as Dt, PdfHighlightAnnotation as Du, RedactResult as E, Pdf417Matrix as Ea, delinearizePdf as Ec, beginMarkedContentSequence as Ed, stroke as Ef, flattenForm as Ei, validateCertificateChain as El, PdfX6Options as En, parseTiffIfd as Eo, buildNamespace as Er, JpegDecodeResult as Es, isWoff2 as Et, PdfSquareAnnotation as Eu, comparePages as F, encodeUpcA as Fa, LtvOptions as Fc, beginText as Fd, InvalidColorError as Fi, requestTimestamp as Fl, buildThresholdHalftone as Fn, encodePngFromPixels as Fo, TableExtractOptions as Fr, applyRedaction as Fs, WorkerPoolOptions as Ft, PdfTextAnnotation as Fu, renderDisplayListToCanvas as G, Code39Options as Ga, FieldLockInfo as Gc, setTextRenderingMode as Gd, HeaderFooterContent as Gi, encodeSequence as Gl, evaluateFunction as Gn, convertTiffCmykToRgb as Go, ParsedPage as Gr, generatePdfAXmpBytes as Gs, renderToPdf as Gt, setFieldValue as Gu, generateThumbnail as H, ItfOptions as Ha, DiffEntry as Hc, setFontSize as Hd, RichTextFieldReadError as Hi, encodeOID as Hl, PostScriptFunction as Hn, getSupportedFormats as Ho, metadataPlugin as Hr, enforcePdfAFull as Hs, RenderOptions$1 as Ht, createSandbox as Hu, ExtractedFont as I, upcAToOperators as Ia, buildDssDictionary as Ic, endText as Id, InvalidFieldNamePartError as Ii, SignatureOptions as Il, buildType1Halftone as In, recompressWebP as Io, extractTables as Ir, buildPdfXOutputIntent as Is, createWorkerPool as It, TextAnnotationIcon as Iu, RenderOptions as J, encodeCode39 as Ja, buildFieldLockDict as Jc, showText as Jd, applyHeaderFooter as Ji, encodeUtf8String as Jl, CollectionOptions as Jn, JpegMetadata as Jo, StreamingParserOptions as Jr, StrippedFeature as Js, RangeFetchOptions as Jt, AFSpecial_Format as Ju, renderPageToCanvas as K, code39ToOperators as Ka, FieldLockOptions as Kc, setTextRise as Kd, HeaderFooterOptions as Ki, encodeSet as Kl, MarkdownToPdfOptions as Kn, embedTiffCmyk as Ko, StreamingParseResult as Kr, StripOptions as Ks, FetchLike as Kt, addVisibilityAction as Ku, FontFileFormat as L, calculateEanCheckDigit as La, embedLtvData as Lc, moveText as Ld, InvalidPageSizeError as Li, SignerInfo as Ll, buildType5Halftone as Ln, webpToJpeg as Lo, tableToCsv as Lr, enforcePdfX as Ls, PdfVtConformance as Lt, AFDate_FormatEx as Lu, CompareOptions as M, dataMatrixToOperators as Ma, findChangedObjects as Mc, drawImageWithMatrix as Md, saveIncremental as Mf, FieldExistsAsNonTerminalError as Mi, TimestampResult as Ml, STANDARD_SPOT_FUNCTIONS as Mn, DirectEmbedResult as Mo, DocumentPart as Mr, OverlayAlignment as Ms, signDeferred as Mt, PdfFreeTextAnnotation as Mu, DiffResult as N, encodeDataMatrix as Na, optimizeIncrementalSave as Nc, drawImageXObject as Nd, FontNotEmbeddedError as Ni, buildTimestampRequest as Nl, Type1Halftone as Nn, canDirectEmbed as No, buildDPartRoot as Nr, RedactionOperatorOptions as Ns, TaskRunner as Nt, LinkHighlightMode as Nu, ApplyOcrOptions as O, encodePdf417 as Oa, isLinearized as Oc, createMarkedContentScope as Od, isTrueType as Of, CombedTextLayoutError as Oi, extractCrlUrls as Ol, buildBoxDict as On, decodeWebP as Oo, buildPieceInfo as Or, decodeJpegWasm as Os, DeferredSignOptions as Ot, PdfSquigglyAnnotation as Ou, compareImages as P, calculateUpcCheckDigit as Pa, DssData as Pc, drawXObject as Pd, ForeignPageError as Pi, parseTimestampResponse as Pl, buildSampledTransferFunction as Pn, embedTiffDirect as Po, ExtractedTable as Pr, RedactionResult as Ps, WorkerPool as Pt, PdfLinkAnnotation as Pu, interpretContentStream as Q, encodeCode128Values as Qa, ModificationViolationType as Qc, showTextWithSpacing as Qd, toAlpha as Qi, embedSignature as Ql, Line as Qn, analyzeJpegMarkers as Qo, getInlineWasmBytes as Qr, XmpIssue as Qs, FallbackRun as Qt, sha512 as Qu, extractFonts as R, ean13ToOperators as Ra, hasLtvData as Rc, moveTextSetLeading as Rd, MissingOnValueCheckError as Ri, buildPkcs7Signature as Rl, identityTransferFunction as Rn, webpToPng as Ro, tableToJson as Rr, validatePdfX as Rs, RecordMetadata as Rt, formatDate$1 as Ru, TileOptions as S, readEan8 as Sa, enforcePdfA as Sc, MarkedContentScope as Sd, setLineCap as Sf, FlattenFormResult as Si, TrustStore as Sl, InvoiceParty as Sn, decodeTiffAll as So, toSarif as Sr, estimateJpegQuality as Ss, parseTileInfo as St, PdfCircleAnnotation as Su, RedactRect as T, renderStyledBarcode as Ta, LinearizationOptions as Tc, beginMarkedContent as Td, setMiterLimit as Tf, flattenFields as Ti, buildCertificateChain as Tl, PdfRect as Tn, isTiff as To, PDF2_NAMESPACE as Tr, ChromaSubsampling as Ts, isWoff as Tt, PdfPolygonAnnotation as Tu, Canvas2DLike as U, encodeItf as Ua, DocumentDiff as Uc, setLeading as Ud, StreamingParseError as Ui, encodeOctetString as Ul, SampledFunction as Un, TiffCmykEmbedResult as Uo, TimestampPluginOptions as Ur, PdfAXmpOptions as Us, VNode as Ut, getFieldValue as Uu, ThumbnailOptions as V, encodeEan8 as Va, getCounterSignatures as Vc, setFont as Vd, RemovePageFromEmptyDocumentError as Vi, encodeLength as Vl, PdfFunctionDef as Vn, getImageFormatName as Vo, MetadataPluginOptions as Vr, EnforcementAction as Vs, gtsPdfVtVersion as Vt, formatNumber as Vu, CanvasRenderOptions as W, itfToOperators as Wa, diffSignedContent as Wc, setTextMatrix as Wd, UnexpectedFieldTypeError as Wi, encodePrintableString as Wl, StitchingFunction as Wn, TiffIfdEntry as Wo, timestampPlugin as Wr, generatePdfAXmp as Ws, h as Wt, resolveFieldReference as Wu, renderPageToImage as X, code128ToOperators as Xa, ModificationReport as Xc, showTextHex as Xd, formatDate as Xi, PrepareAppearanceOptions as Xl, CollectionView as Xn, injectJpegMetadata as Xo, PdfDocumentBuilder as Xr, stripProhibitedFeatures as Xs, createRangeFetcher as Xt, sha256 as Xu, rasterize as Y, Code128Options as Ya, getFieldLocks as Yc, showTextArray as Yd, applyHeaderFooterToPage as Yi, ByteRangeResult as Yl, CollectionSchemaField as Yn, extractJpegMetadata as Yo, StreamingPdfParser as Yr, countOccurrences as Ys, RangeFetcher as Yt, validateFieldValue as Yu, InterpretOptions as Z, encodeCode128 as Za, ModificationViolation as Zc, showTextNextLine as Zd, replaceTemplateVariables as Zi, computeSignatureHash as Zl, buildCollection as Zn, JpegMarkerInfo as Zo, WasmModuleName as Zr, ParsedXmpMetadata as Zs, FallbackFont as Zt, sha384 as Zu, buildPageOutputIntent as _, BarcodeReadResult as _a, detectTransparency as _c, buildXmpMetadata as _d, lineTo as _f, BookmarkRef as _i, verifySignatureDetailed as _l, levenshtein as _n, resetWasmLoader as _o, SarifResult as _r, ImageOptimizeOptions as _s, summarizeBitDepth as _t, PdfRedactAnnotation as _u, buildColorKeyMask as a, shrinkFontSize as aa, getSupportedLevels as ac, verifyOwnerPassword as ad, closeFillAndStroke as af, BatchProgressCallback as ai, SignatureChainResult as al, generateXRechnungCii as an, PdfWorkerOptions as ao, buildDocTimeStampDict as ar, parseIccColorSpace as as, StrokeItem as at, generateHighlightAppearance as au, RenderCache as b, readCode39 as ba, PdfALevel as bc, PdfStreamWriter as bd, setDashPattern as bf, removeAllBookmarks as bi, validateExtendedKeyUsage as bl, Invoice as bn, TiffImage as bo, ValidationLevel as br, RecompressOptions as bs, decodeTile as bt, StandardStampName as bu, SoftMaskGroupOptions as c, PresetName as ca, generateWinAnsiToUnicodeCmap as cc, PdfUaError as cd, curveTo as cf, batchMerge as ci, IncrementalObject as cl, PdfA4Level as cn, clearWasmCache as co, LabParams as cr, isGrayscaleImage as cs, Matrix as ct, generateSquareAppearance as cu, EncryptedPayloadOptions as d, applyPreset as da, OutputIntentOptions as dc, PdfUaWarning as dd, ellipsePath as df, PageLabelStyle as di, TrailerInfo as dl, pdfA4Rules as dn, instantiateWasmModuleStreaming as do, buildLab as dr, BatchOptimizeOptions as ds, layoutParagraph as dt, generateUnderlineAppearance as du, OverflowMode as ea, extractXmpMetadata as ec, aesEncryptCBC as ed, buildSeparationColorSpace as ef, hasInlineWasmData as ei, MdpPermission as el, resolveFallback as en, BarcodeMatrix as eo, ReconstructOptions as er, computeImageDpi as es, DisplayItem as et, prepareForSigning as eu, WrapperPayloadOptions as f, applyTablePreset as fa, buildOutputIntent as fc, enforcePdfUa as fd, endPath as ff, getPageLabels as fi, appendIncrementalUpdate as fl, FunctionShadingOptions as fn, isWasmDisabled as fo, labToRgb as fr, ImageOptimizeEntry as fs, layoutTextFlow as ft, FileAttachmentIcon as fu, attachOutputIntents as g, stripedPreset as ga, TransparencyInfo as gc, summarizeIssues as gd, fillEvenOddAndStroke as gf, BookmarkNode as gi, validateByteRangeIntegrity as gl, didYouMean as gn, provideWasmBytes as go, SarifLog as gr, DownscaleOptions as gs, offsetSignedToUnsigned as gt, PdfPopupAnnotation as gu, PageOutputIntentOptions as h, professionalPreset as ha, TransparencyFinding as hc, isAccessible as hd, fillEvenOdd as hf, AddBookmarkOptions as hi, saveIncrementalWithSignaturePreservation as hl, CodeFrameOptions as hn, loadWasmModuleStreaming as ho, SARIF_SCHEMA_URI as hr, optimizeAllImages as hs, normalizeComponentDepth as ht, PdfCaretAnnotation as hu, buildBlackPointCompensationExtGState as i, estimateTextWidth as ia, getProfile as ic, computeFileEncryptionKey as id, closeAndStroke as if, BatchOptions as ii, SignatureChainEntry as il, generateOrderX as in, PdfWorker as io, DocTimeStampOptions as ir, extractIccProfile as is, Rgba as it, generateFreeTextAppearance as iu, applyOcr as j, DataMatrixResult as ja, computeObjectHash as jc, wrapInMarkedContent as jd, saveDocumentIncremental as jf, FieldAlreadyExistsError as ji, extractOcspUrl as jl, validateBoxGeometry as jn, DirectEmbedOptions as jo, buildRequirements as jr, isJpegWasmReady as js, SignatureAlgorithm as jt, FreeTextAlignment as ju, OcrEngine as k, pdf417ToOperators as ka, linearizePdf as kc, endArtifact as kd, ChangeTracker as kf, EncryptedPdfError as ki, isCertificateRevoked as kl, buildGtsPdfxVersion as kn, isWebP as ko, RequirementType as kr, encodeJpegWasm as ks, DeferredSignResult as kt, PdfStrikeOutAnnotation as ku, buildSoftMaskGroupExtGState as l, PresetOptions as la, generateZapfDingbatsToUnicodeCmap as lc, PdfUaLevel as ld, curveToFinal as lf, processBatch as li, IncrementalSaveOptions as ll, PdfA4Options as ln, configureWasmLoader as lo, buildCalGray as lr, DeduplicationReport as ls, findHyphenationPoints as lt, generateSquigglyAppearance as lu, buildUnencryptedWrapper as m, minimalPreset as ma, generateSrgbIccProfile as mc, checkAccessibility as md, fillAndStroke as mf, setPageLabels as mi, parseExistingTrailer as ml, sampleShadingColor as mn, loadWasmModule as mo, JsonReport as mr, ProgressInfo as ms, getComponentDepths as mt, CaretSymbol as mu, index_d_exports as n, applyOverflow as na, validateXmpMetadata as nc, md5 as nd, clip as nf, preloadInlineWasm as ni, getCertificationLevel as nl, OrderXType as nn, base64Decode as no, reconstructParagraphs as nr, IccProfile as ns, FillItem as nt, searchTextItems as nu, buildImageSoftMask as o, truncateText as oa, isValidLevel as oc, verifyUserPassword as od, closeFillEvenOddAndStroke as of, BatchResult as oi, validateSignatureChain as ol, PdfA4ExtensionProperty as on, RuntimeKind as oo, CalGrayParams as or, parseIccDescription as os, SubPath as ot, generateInkAppearance as ou, buildEncryptedPayload as p, borderedPreset as pa, SRGB_ICC_PROFILE as pc, validatePdfUa as pd, fill as pf, removePageLabels as pi, findExistingSignatures as pl, buildFunctionShading as pn, isWasmModuleCached as po, DEFAULT_SARIF_TOOL_NAME as pr, OptimizationReport as ps, downscale16To8 as pt, PdfFileAttachmentAnnotation as pu, RasterImage as q, computeCode39CheckDigit as qa, addFieldLock as qc, setWordSpacing as qd, HeaderFooterPosition as qi, encodeUTCTime as ql, markdownToPdf as qn, isCmykTiff as qo, StreamingParserEvent as qr, StripResult as qs, FetchLikeResponse as qt, setFieldVisibility as qu, initWasm as r, ellipsisText as ra, PdfAProfile as rc, EncryptDictValues as rd, clipEvenOdd as rf, BatchErrorStrategy as ri, setCertificationLevel as rl, XRechnungOptions as rn, base64Encode as ro, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as rr, embedIccProfile as rs, ImageItem as rt, generateCircleAppearance as ru, buildStencilMask as s, wrapText as sa, generateSymbolToUnicodeCmap as sc, PdfUaEnforcementResult as sd, closePath as sf, batchFlatten as si, AppendOptions as sl, PdfA4ExtensionSchema as sn, WasmLoaderConfig as so, CalRGBParams as sr, convertToGrayscale as ss, TextItem as st, generateLineAppearance as su, InitWasmOptions as t, OverflowResult as ta, parseXmpMetadata as tc, rc4 as td, circlePath as tf, isValidModuleName as ti, buildDocMdpReference as tl, splitByScript as tn, BarcodeOptions as to, reconstructLines as tr, computeTargetDimensions as ts, DisplayList as tt, decodeJpeg2000 as tu, buildSoftMaskNone as u, TablePreset as ua, getToUnicodeCmap as uc, PdfUaValidationResult as ud, curveToInitial as uf, PageLabelRange as ui, SignatureByteRange as ul, buildPdfA4Xmp as un, detectRuntime as uo, buildCalRGB as ur, deduplicateImages as us, layoutColumns as ut, generateStrikeOutAppearance as uu, attachAssociatedFiles as v, readBarcode as va, flattenTransparency as vc, createXmpStream as vd, moveTo as vf, addBookmark as vi, EKU_OIDS as vl, renderCodeFrame as vn, IfdEntry as vo, SarifRun as vr, OptimizeResult as vs, upscale8To16 as vt, PdfInkAnnotation as vu, renderPageTile as w, calculateBarcodeDimensions as wa, LinearizationInfo as wc, beginArtifactWithType as wd, setLineWidth as wf, flattenField as wi, verifyOfflineRevocation as wl, BoxGeometry as wn, getTiffPageCount as wo, NamespaceDef as wr, recompressImage as ws, decodeWoff as wt, PdfPolyLineAnnotation as wu, TileGrid as x, readEan13 as xa, PdfAValidationResult as xc, PDFOperator as xd, setFlatness as xf, removeBookmark as xi, validateKeyUsage as xl, InvoiceLine as xn, decodeTiff as xo, toJsonReport as xr, downscaleImage as xs, decodeTileRegion as xt, LineEndingStyle as xu, registerEmbeddedFile as y, readCode128 as ya, PdfAIssue as yc, parseXmpMetadata$1 as yd, rectangle as yf, getBookmarks as yi, validateCertificatePolicy as yl, FacturXProfile as yn, TiffDecodeOptions as yo, ValidationFinding as yr, RawImageData as ys, assembleTiles as yt, PdfStampAnnotation as yu, ExtractedImage as z, ean8ToOperators as za, CounterSignatureInfo as zc, nextLine as zd, NoSuchFieldError as zi, encodeContextTag as zl, nameHalftone as zn, ImageFormat as zo, AccessibilityPluginOptions as zr, EnforcePdfAOptions as zs, buildPdfVtDParts as zt, parseAcrobatDate as zu };
10977
- //# sourceMappingURL=index-BJ4KxqDL.d.cts.map
11450
+ export { redactRegions as $, Pdf417Options as $a, getLinearizationInfo as $c, beginMarkedContentWithProperties as $d, isOpenTypeCFF as $f, BatchProcessingError as $i, downloadCrl as $l, PdfX6Variant as $n, WebPImage as $o, buildNamespacesArray as $r, JpegWasmModule as $s, readWoffHeader as $t, PdfHighlightAnnotation as $u, buildBlackPointCompensationExtGState as A, estimateTextWidth as Aa, getProfile as Ac, computeFileEncryptionKey as Ad, closeAndStroke as Af, BatchOptions as Ai, SignatureChainEntry as Al, generateOrderX as An, PdfWorker as Ao, DocTimeStampOptions as Ar, extractIccProfile as As, Rgba as At, generateFreeTextAppearance as Au, buildUnencryptedWrapper as B, minimalPreset as Ba, generateSrgbIccProfile as Bc, checkAccessibility as Bd, fillAndStroke as Bf, setPageLabels as Bi, parseExistingTrailer as Bl, sampleShadingColor as Bn, loadWasmModule as Bo, JsonReport as Br, ProgressInfo as Bs, getComponentDepths as Bt, CaretSymbol as Bu, tagList as C, replaceTemplateVariables as Ca, ParsedXmpMetadata as Cc, sha384 as Cd, showTextNextLine as Cf, WasmModuleName as Ci, ModificationViolation as Cl, FallbackFont as Cn, encodeCode128 as Co, buildCollection as Cr, JpegMarkerInfo as Cs, InterpretOptions as Ct, computeSignatureHash as Cu, tagTableDataCell as D, OverflowResult as Da, parseXmpMetadata as Dc, rc4 as Dd, circlePath as Df, isValidModuleName as Di, buildDocMdpReference as Dl, splitByScript as Dn, BarcodeOptions as Do, reconstructLines as Dr, computeTargetDimensions as Ds, DisplayList as Dt, decodeJpeg2000 as Du, tagTable as E, OverflowMode as Ea, extractXmpMetadata as Ec, aesEncryptCBC as Ed, buildSeparationColorSpace as Ef, hasInlineWasmData as Ei, MdpPermission as El, resolveFallback as En, BarcodeMatrix as Eo, ReconstructOptions as Er, computeImageDpi as Es, DisplayItem as Et, prepareForSigning as Eu, buildSoftMaskGroupExtGState as F, PresetOptions as Fa, generateZapfDingbatsToUnicodeCmap as Fc, PdfUaLevel as Fd, curveToFinal as Ff, processBatch as Fi, IncrementalSaveOptions as Fl, PdfA4Options as Fn, configureWasmLoader as Fo, buildCalGray as Fr, DeduplicationReport as Fs, findHyphenationPoints as Ft, generateSquigglyAppearance as Fu, registerEmbeddedFile as G, readCode128 as Ga, PdfAIssue as Gc, parseXmpMetadata$1 as Gd, rectangle as Gf, getBookmarks as Gi, validateCertificatePolicy as Gl, FacturXProfile as Gn, TiffDecodeOptions as Go, ValidationFinding as Gr, RawImageData as Gs, assembleTiles as Gt, PdfStampAnnotation as Gu, attachOutputIntents as H, stripedPreset as Ha, TransparencyInfo as Hc, summarizeIssues as Hd, fillEvenOddAndStroke as Hf, BookmarkNode as Hi, validateByteRangeIntegrity as Hl, didYouMean as Hn, provideWasmBytes as Ho, SarifLog as Hr, DownscaleOptions as Hs, offsetSignedToUnsigned as Ht, PdfPopupAnnotation as Hu, buildSoftMaskNone as I, TablePreset as Ia, getToUnicodeCmap as Ic, PdfUaValidationResult as Id, curveToInitial as If, PageLabelRange as Ii, SignatureByteRange as Il, buildPdfA4Xmp as In, detectRuntime as Io, buildCalRGB as Ir, deduplicateImages as Is, layoutColumns as It, generateStrikeOutAppearance as Iu, TileOptions as J, readEan8 as Ja, enforcePdfA as Jc, MarkedContentScope as Jd, setLineCap as Jf, FlattenFormResult as Ji, TrustStore as Jl, InvoiceParty as Jn, decodeTiffAll as Jo, toSarif as Jr, estimateJpegQuality as Js, parseTileInfo as Jt, PdfCircleAnnotation as Ju, RenderCache as K, readCode39 as Ka, PdfALevel as Kc, PdfStreamWriter as Kd, setDashPattern as Kf, removeAllBookmarks as Ki, validateExtendedKeyUsage as Kl, Invoice as Kn, TiffImage as Ko, ValidationLevel as Kr, RecompressOptions as Ks, decodeTile as Kt, StandardStampName as Ku, EncryptedPayloadOptions as L, applyPreset as La, OutputIntentOptions as Lc, PdfUaWarning as Ld, ellipsePath as Lf, PageLabelStyle as Li, TrailerInfo as Ll, pdfA4Rules as Ln, instantiateWasmModuleStreaming as Lo, buildLab as Lr, BatchOptimizeOptions as Ls, layoutParagraph as Lt, generateUnderlineAppearance as Lu, buildImageSoftMask as M, truncateText as Ma, isValidLevel as Mc, verifyUserPassword as Md, closeFillEvenOddAndStroke as Mf, BatchResult as Mi, validateSignatureChain as Ml, PdfA4ExtensionProperty as Mn, RuntimeKind as Mo, CalGrayParams as Mr, parseIccDescription as Ms, SubPath as Mt, generateInkAppearance as Mu, buildStencilMask as N, wrapText as Na, generateSymbolToUnicodeCmap as Nc, PdfUaEnforcementResult as Nd, closePath as Nf, batchFlatten as Ni, AppendOptions as Nl, PdfA4ExtensionSchema as Nn, WasmLoaderConfig as No, CalRGBParams as Nr, convertToGrayscale as Ns, TextItem as Nt, generateLineAppearance as Nu, tagTableHeaderCell as O, applyOverflow as Oa, validateXmpMetadata as Oc, md5 as Od, clip as Of, preloadInlineWasm as Oi, getCertificationLevel as Ol, OrderXType as On, base64Decode as Oo, reconstructParagraphs as Or, IccProfile as Os, FillItem as Ot, searchTextItems as Ou, SoftMaskGroupOptions as P, PresetName as Pa, generateWinAnsiToUnicodeCmap as Pc, PdfUaError as Pd, curveTo as Pf, batchMerge as Pi, IncrementalObject as Pl, PdfA4Level as Pn, clearWasmCache as Po, LabParams as Pr, isGrayscaleImage as Ps, Matrix as Pt, generateSquareAppearance as Pu, RedactResult as Q, Pdf417Matrix as Qa, delinearizePdf as Qc, beginMarkedContentSequence as Qd, stroke as Qf, flattenForm as Qi, validateCertificateChain as Ql, PdfX6Options as Qn, parseTiffIfd as Qo, buildNamespace as Qr, JpegDecodeResult as Qs, isWoff2 as Qt, PdfSquareAnnotation as Qu, WrapperPayloadOptions as R, applyTablePreset as Ra, buildOutputIntent as Rc, enforcePdfUa as Rd, endPath as Rf, getPageLabels as Ri, appendIncrementalUpdate as Rl, FunctionShadingOptions as Rn, isWasmDisabled as Ro, labToRgb as Rr, ImageOptimizeEntry as Rs, layoutTextFlow as Rt, FileAttachmentIcon as Ru, tagLink as S, formatDate as Sa, stripProhibitedFeatures as Sc, sha256 as Sd, showTextHex as Sf, PdfDocumentBuilder as Si, ModificationReport as Sl, createRangeFetcher as Sn, code128ToOperators as So, CollectionView as Sr, injectJpegMetadata as Ss, renderPageToImage as St, PrepareAppearanceOptions as Su, tagParagraph as T, toRoman as Ta, XmpValidationResult as Tc, aesDecryptCBC as Td, buildDeviceNColorSpace as Tf, getInlineWasmSize as Ti, detectModifications as Tl, ScriptRun as Tn, valuesToModules as To, Paragraph as Tr, ImageDpi as Ts, interpretPage as Tt, findSignatures as Tu, buildPageOutputIntent as U, BarcodeReadResult as Ua, detectTransparency as Uc, buildXmpMetadata as Ud, lineTo as Uf, BookmarkRef as Ui, verifySignatureDetailed as Ul, levenshtein as Un, resetWasmLoader as Uo, SarifResult as Ur, ImageOptimizeOptions as Us, summarizeBitDepth as Ut, PdfRedactAnnotation as Uu, PageOutputIntentOptions as V, professionalPreset as Va, TransparencyFinding as Vc, isAccessible as Vd, fillEvenOdd as Vf, AddBookmarkOptions as Vi, saveIncrementalWithSignaturePreservation as Vl, CodeFrameOptions as Vn, loadWasmModuleStreaming as Vo, SARIF_SCHEMA_URI as Vr, optimizeAllImages as Vs, normalizeComponentDepth as Vt, PdfCaretAnnotation as Vu, attachAssociatedFiles as W, readBarcode as Wa, flattenTransparency as Wc, createXmpStream as Wd, moveTo as Wf, addBookmark as Wi, EKU_OIDS as Wl, renderCodeFrame as Wn, IfdEntry as Wo, SarifRun as Wr, OptimizeResult as Ws, upscale8To16 as Wt, PdfInkAnnotation as Wu, renderPageTile as X, calculateBarcodeDimensions as Xa, LinearizationInfo as Xc, beginArtifactWithType as Xd, setLineWidth as Xf, flattenField as Xi, verifyOfflineRevocation as Xl, BoxGeometry as Xn, getTiffPageCount as Xo, NamespaceDef as Xr, recompressImage as Xs, decodeWoff as Xt, PdfPolyLineAnnotation as Xu, computeTileGrid as Y, StyledBarcodeOptions as Ya, validatePdfA as Yc, beginArtifact as Yd, setLineJoin as Yf, FlattenOptions as Yi, extractEmbeddedRevocationData as Yl, generateCiiXml as Yn, decodeTiffPage as Yo, MATHML_NAMESPACE as Yr, optimizeImage as Ys, WoffInfo as Yt, PdfLineAnnotation as Yu, RedactRect as Z, renderStyledBarcode as Za, LinearizationOptions as Zc, beginMarkedContent as Zd, setMiterLimit as Zf, flattenFields as Zi, buildCertificateChain as Zl, PdfRect as Zn, isTiff as Zo, PDF2_NAMESPACE as Zr, ChromaSubsampling as Zs, isWoff as Zt, PdfPolygonAnnotation as Zu, LIST_NUMBERING_KEY as _, HeaderFooterContent as _a, generatePdfAXmpBytes as _c, setFieldValue as _d, setTextRenderingMode as _f, ParsedPage as _i, FieldLockInfo as _l, renderToPdf as _n, Code39Options as _o, evaluateFunction as _r, convertTiffCmykToRgb as _s, renderDisplayListToCanvas as _t, encodeSequence as _u, buildPdfRIdentificationXmp as a, FontNotEmbeddedError as aa, RedactionOperatorOptions as ac, LinkHighlightMode as ad, drawImageXObject as af, buildDPartRoot as ai, optimizeIncrementalSave as al, TaskRunner as an, encodeDataMatrix as ao, Type1Halftone as ar, canDirectEmbed as as, DiffResult as at, buildTimestampRequest as au, tagFigure as b, applyHeaderFooter as ba, StrippedFeature as bc, AFSpecial_Format as bd, showText as bf, StreamingParserOptions as bi, buildFieldLockDict as bl, RangeFetchOptions as bn, encodeCode39 as bo, CollectionOptions as br, JpegMetadata as bs, RenderOptions as bt, encodeUtf8String as bu, convertPdfAConformanceXmp as c, InvalidFieldNamePartError as ca, buildPdfXOutputIntent as cc, TextAnnotationIcon as cd, endText as cf, extractTables as ci, buildDssDictionary as cl, createWorkerPool as cn, upcAToOperators as co, buildType1Halftone as cr, recompressWebP as cs, ExtractedFont as ct, SignatureOptions as cu, AutoTagResult as d, NoSuchFieldError as da, EnforcePdfAOptions as dc, parseAcrobatDate as dd, nextLine as df, AccessibilityPluginOptions as di, CounterSignatureInfo as dl, buildPdfVtDParts as dn, ean8ToOperators as do, nameHalftone as dr, ImageFormat as ds, ExtractedImage as dt, encodeContextTag as du, CombedTextLayoutError as ea, decodeJpegWasm as ec, PdfSquigglyAnnotation as ed, createMarkedContentScope as ef, buildPieceInfo as ei, isLinearized as el, DeferredSignOptions as en, encodePdf417 as eo, isTrueType as ep, buildBoxDict as er, decodeWebP as es, ApplyOcrOptions as et, extractCrlUrls as eu, autoTagPage as f, PluginError as fa, EnforcePdfAResult as fc, AFNumber_Format as fd, setCharacterSpacing as ff, accessibilityPlugin as fi, addCounterSignature as fl, buildVtDpm as fn, encodeEan13 as fo, ExponentialFunction as fr, detectImageFormat as fs, extractImages as ft, encodeInteger as fu, validatePdfUa2 as g, UnexpectedFieldTypeError as ga, generatePdfAXmp as gc, resolveFieldReference as gd, setTextMatrix as gf, timestampPlugin as gi, diffSignedContent as gl, h as gn, itfToOperators as go, StitchingFunction as gr, TiffIfdEntry as gs, CanvasRenderOptions as gt, encodePrintableString as gu, buildPdfUa2Xmp as h, StreamingParseError as ha, PdfAXmpOptions as hc, getFieldValue as hd, setLeading as hf, TimestampPluginOptions as hi, DocumentDiff as hl, VNode as hn, encodeItf as ho, SampledFunction as hr, TiffCmykEmbedResult as hs, Canvas2DLike as ht, encodeOctetString as hu, ProfileXmpOptions as i, FieldExistsAsNonTerminalError as ia, OverlayAlignment as ic, PdfFreeTextAnnotation as id, drawImageWithMatrix as if, DocumentPart as ii, findChangedObjects as il, signDeferred as in, dataMatrixToOperators as io, saveIncremental as ip, STANDARD_SPOT_FUNCTIONS as ir, DirectEmbedResult as is, CompareOptions as it, TimestampResult as iu, buildColorKeyMask as j, shrinkFontSize as ja, getSupportedLevels as jc, verifyOwnerPassword as jd, closeFillAndStroke as jf, BatchProgressCallback as ji, SignatureChainResult as jl, generateXRechnungCii as jn, PdfWorkerOptions as jo, buildDocTimeStampDict as jr, parseIccColorSpace as js, StrokeItem as jt, generateHighlightAppearance as ju, tagTableRow as k, ellipsisText as ka, PdfAProfile as kc, EncryptDictValues as kd, clipEvenOdd as kf, BatchErrorStrategy as ki, setCertificationLevel as kl, XRechnungOptions as kn, base64Encode as ko, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as kr, embedIccProfile as ks, ImageItem as kt, generateCircleAppearance as ku, preflightPdfA as l, InvalidPageSizeError as la, enforcePdfX as lc, AFDate_FormatEx as ld, moveText as lf, tableToCsv as li, embedLtvData as ll, PdfVtConformance as ln, calculateEanCheckDigit as lo, buildType5Halftone as lr, webpToJpeg as ls, FontFileFormat as lt, SignerInfo as lu, PdfUa2Result as m, RichTextFieldReadError as ma, enforcePdfAFull as mc, createSandbox as md, setFontSize as mf, metadataPlugin as mi, DiffEntry as ml, RenderOptions$1 as mn, ItfOptions as mo, PostScriptFunction as mr, getSupportedFormats as ms, generateThumbnail as mt, encodeOID as mu, index_d_exports as n, ExceededMaxLengthError as na, initJpegWasm as nc, PdfUnderlineAnnotation as nd, endMarkedContent as nf, buildRequirement as ni, IncrementalChange as nl, ExternalSigner as nn, DataMatrixOptions as no, IncrementalSaveResult as np, buildPdfX6OutputIntent as nr, isWebPLossless as ns, OcrWord as nt, checkCertificateStatus as nu, buildWtpdfIdentificationXmp as o, ForeignPageError as oa, RedactionResult as oc, PdfLinkAnnotation as od, drawXObject as of, ExtractedTable as oi, DssData as ol, WorkerPool as on, calculateUpcCheckDigit as oo, buildSampledTransferFunction as or, embedTiffDirect as os, compareImages as ot, parseTimestampResponse as ou, PdfUa2Issue as p, RemovePageFromEmptyDocumentError as pa, EnforcementAction as pc, formatNumber as pd, setFont as pf, MetadataPluginOptions as pi, getCounterSignatures as pl, gtsPdfVtVersion as pn, encodeEan8 as po, PdfFunctionDef as pr, getImageFormatName as ps, ThumbnailOptions as pt, encodeLength as pu, TileGrid as q, readEan13 as qa, PdfAValidationResult as qc, PDFOperator as qd, setFlatness as qf, removeBookmark as qi, validateKeyUsage as ql, InvoiceLine as qn, decodeTiff as qo, toJsonReport as qr, downscaleImage as qs, decodeTileRegion as qt, LineEndingStyle as qu, initWasm as r, FieldAlreadyExistsError as ra, isJpegWasmReady as rc, FreeTextAlignment as rd, wrapInMarkedContent as rf, buildRequirements as ri, computeObjectHash as rl, SignatureAlgorithm as rn, DataMatrixResult as ro, saveDocumentIncremental as rp, validateBoxGeometry as rr, DirectEmbedOptions as rs, applyOcr as rt, extractOcspUrl as ru, PreflightIssue as s, InvalidColorError as sa, applyRedaction as sc, PdfTextAnnotation as sd, beginText as sf, TableExtractOptions as si, LtvOptions as sl, WorkerPoolOptions as sn, encodeUpcA as so, buildThresholdHalftone as sr, encodePngFromPixels as ss, comparePages as st, requestTimestamp as su, InitWasmOptions as t, EncryptedPdfError as ta, encodeJpegWasm as tc, PdfStrikeOutAnnotation as td, endArtifact as tf, RequirementType as ti, linearizePdf as tl, DeferredSignResult as tn, pdf417ToOperators as to, ChangeTracker as tp, buildGtsPdfxVersion as tr, isWebP as ts, OcrEngine as tt, isCertificateRevoked as tu, AutoTagOptions as u, MissingOnValueCheckError as ua, validatePdfX as uc, formatDate$1 as ud, moveTextSetLeading as uf, tableToJson as ui, hasLtvData as ul, RecordMetadata as un, ean13ToOperators as uo, identityTransferFunction as ur, webpToPng as us, extractFonts as ut, buildPkcs7Signature as uu, ListNumbering as v, HeaderFooterOptions as va, StripOptions as vc, addVisibilityAction as vd, setTextRise as vf, StreamingParseResult as vi, FieldLockOptions as vl, FetchLike as vn, code39ToOperators as vo, MarkdownToPdfOptions as vr, embedTiffCmyk as vs, renderPageToCanvas as vt, encodeSet as vu, tagListItem as w, toAlpha as wa, XmpIssue as wc, sha512 as wd, showTextWithSpacing as wf, getInlineWasmBytes as wi, ModificationViolationType as wl, FallbackRun as wn, encodeCode128Values as wo, Line as wr, analyzeJpegMarkers as ws, interpretContentStream as wt, embedSignature as wu, tagHeading as x, applyHeaderFooterToPage as xa, countOccurrences as xc, validateFieldValue as xd, showTextArray as xf, StreamingPdfParser as xi, getFieldLocks as xl, RangeFetcher as xn, Code128Options as xo, CollectionSchemaField as xr, extractJpegMetadata as xs, rasterize as xt, ByteRangeResult as xu, TaggedListItem as y, HeaderFooterPosition as ya, StripResult as yc, setFieldVisibility as yd, setWordSpacing as yf, StreamingParserEvent as yi, addFieldLock as yl, FetchLikeResponse as yn, computeCode39CheckDigit as yo, markdownToPdf as yr, isCmykTiff as ys, RasterImage as yt, encodeUTCTime as yu, buildEncryptedPayload as z, borderedPreset as za, SRGB_ICC_PROFILE as zc, validatePdfUa as zd, fill as zf, removePageLabels as zi, findExistingSignatures as zl, buildFunctionShading as zn, isWasmModuleCached as zo, DEFAULT_SARIF_TOOL_NAME as zr, OptimizationReport as zs, downscale16To8 as zt, PdfFileAttachmentAnnotation as zu };
11451
+ //# sourceMappingURL=index-JejepHCR.d.cts.map