modern-pdf-lib 0.30.0 → 0.31.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.
- package/README.md +3 -3
- package/dist/browser.cjs +15 -1
- package/dist/browser.d.cts +2 -2
- package/dist/browser.d.mts +2 -2
- package/dist/browser.mjs +2 -2
- package/dist/{index-BJ4KxqDL.d.cts → index-CTL7WUTU.d.cts} +310 -3
- package/dist/index-CTL7WUTU.d.cts.map +1 -0
- package/dist/{index-CERay5r2.d.mts → index-D8FO08WM.d.mts} +310 -3
- package/dist/index-D8FO08WM.d.mts.map +1 -0
- package/dist/index.cjs +15 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/{src-s9zNsZAT.mjs → src-B7SQNDvy.mjs} +529 -4
- package/dist/{src-Tb7wHOKz.cjs → src-VeeIdf7B.cjs} +612 -3
- package/package.json +1 -1
- package/dist/index-BJ4KxqDL.d.cts.map +0 -1
- package/dist/index-CERay5r2.d.mts.map +0 -1
|
@@ -10920,8 +10920,315 @@ 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;
|
|
10923
11230
|
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 };
|
|
11231
|
+
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, 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, 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, buildPdfUa2Xmp, 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, 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
11232
|
}
|
|
10926
11233
|
/**
|
|
10927
11234
|
* Options for WASM module initialization.
|
|
@@ -10973,5 +11280,5 @@ interface InitWasmOptions {
|
|
|
10973
11280
|
*/
|
|
10974
11281
|
declare function initWasm(options?: string | URL | InitWasmOptions): Promise<void>;
|
|
10975
11282
|
//#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, __exportAll as Nf, 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-
|
|
11283
|
+
export { DiffResult as $, encodeDataMatrix as $a, optimizeIncrementalSave as $c, drawImageXObject as $d, __exportAll as $f, FontNotEmbeddedError as $i, buildTimestampRequest as $l, Type1Halftone as $n, canDirectEmbed as $o, buildDPartRoot as $r, RedactionOperatorOptions as $s, TaskRunner as $t, LinkHighlightMode as $u, buildSoftMaskNone as A, TablePreset as Aa, getToUnicodeCmap as Ac, PdfUaValidationResult as Ad, curveToInitial as Af, PageLabelRange as Ai, SignatureByteRange as Al, buildPdfA4Xmp as An, detectRuntime as Ao, buildCalRGB as Ar, deduplicateImages as As, layoutColumns as At, generateStrikeOutAppearance 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, tagTableRow as C, ellipsisText as Ca, PdfAProfile as Cc, EncryptDictValues as Cd, clipEvenOdd as Cf, BatchErrorStrategy as Ci, setCertificationLevel as Cl, XRechnungOptions as Cn, base64Encode as Co, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as Cr, embedIccProfile as Cs, ImageItem as Ct, generateCircleAppearance as Cu, buildStencilMask as D, wrapText as Da, generateSymbolToUnicodeCmap as Dc, PdfUaEnforcementResult as Dd, closePath as Df, batchFlatten as Di, AppendOptions as Dl, PdfA4ExtensionSchema as Dn, WasmLoaderConfig as Do, CalRGBParams as Dr, convertToGrayscale as Ds, TextItem as Dt, generateLineAppearance as Du, buildImageSoftMask as E, truncateText as Ea, isValidLevel as Ec, verifyUserPassword as Ed, closeFillEvenOddAndStroke as Ef, BatchResult as Ei, validateSignatureChain as El, PdfA4ExtensionProperty as En, RuntimeKind as Eo, CalGrayParams as Er, parseIccDescription as Es, SubPath as Et, generateInkAppearance as Eu, PageOutputIntentOptions as F, professionalPreset as Fa, TransparencyFinding as Fc, isAccessible as Fd, fillEvenOdd as Ff, AddBookmarkOptions as Fi, saveIncrementalWithSignaturePreservation as Fl, CodeFrameOptions as Fn, loadWasmModuleStreaming as Fo, SARIF_SCHEMA_URI as Fr, optimizeAllImages as Fs, normalizeComponentDepth as Ft, PdfCaretAnnotation as Fu, RedactRect as G, renderStyledBarcode as Ga, LinearizationOptions as Gc, beginMarkedContent as Gd, setMiterLimit as Gf, flattenFields as Gi, buildCertificateChain as Gl, PdfRect as Gn, isTiff as Go, PDF2_NAMESPACE as Gr, ChromaSubsampling as Gs, isWoff as Gt, PdfPolygonAnnotation as Gu, TileOptions as H, readEan8 as Ha, enforcePdfA as Hc, MarkedContentScope as Hd, setLineCap as Hf, FlattenFormResult as Hi, TrustStore as Hl, InvoiceParty as Hn, decodeTiffAll as Ho, toSarif as Hr, estimateJpegQuality as Hs, parseTileInfo as Ht, PdfCircleAnnotation as Hu, attachOutputIntents as I, stripedPreset as Ia, TransparencyInfo as Ic, summarizeIssues as Id, fillEvenOddAndStroke as If, BookmarkNode as Ii, validateByteRangeIntegrity as Il, didYouMean as In, provideWasmBytes as Io, SarifLog as Ir, DownscaleOptions as Is, offsetSignedToUnsigned as It, PdfPopupAnnotation as Iu, ApplyOcrOptions as J, encodePdf417 as Ja, isLinearized as Jc, createMarkedContentScope as Jd, isTrueType as Jf, CombedTextLayoutError as Ji, extractCrlUrls as Jl, buildBoxDict as Jn, decodeWebP as Jo, buildPieceInfo as Jr, decodeJpegWasm as Js, DeferredSignOptions as Jt, PdfSquigglyAnnotation as Ju, RedactResult as K, Pdf417Matrix as Ka, delinearizePdf as Kc, beginMarkedContentSequence as Kd, stroke as Kf, flattenForm as Ki, validateCertificateChain as Kl, PdfX6Options as Kn, parseTiffIfd as Ko, buildNamespace as Kr, JpegDecodeResult as Ks, isWoff2 as Kt, PdfSquareAnnotation as Ku, buildPageOutputIntent as L, BarcodeReadResult as La, detectTransparency as Lc, buildXmpMetadata as Ld, lineTo as Lf, BookmarkRef as Li, verifySignatureDetailed as Ll, levenshtein as Ln, resetWasmLoader as Lo, SarifResult as Lr, ImageOptimizeOptions as Ls, summarizeBitDepth as Lt, PdfRedactAnnotation as Lu, WrapperPayloadOptions as M, applyTablePreset as Ma, buildOutputIntent as Mc, enforcePdfUa as Md, endPath as Mf, getPageLabels as Mi, appendIncrementalUpdate as Ml, FunctionShadingOptions as Mn, isWasmDisabled as Mo, labToRgb as Mr, ImageOptimizeEntry as Ms, layoutTextFlow as Mt, FileAttachmentIcon as Mu, buildEncryptedPayload as N, borderedPreset as Na, SRGB_ICC_PROFILE as Nc, validatePdfUa as Nd, fill as Nf, removePageLabels as Ni, findExistingSignatures as Nl, buildFunctionShading as Nn, isWasmModuleCached as No, DEFAULT_SARIF_TOOL_NAME as Nr, OptimizationReport as Ns, downscale16To8 as Nt, PdfFileAttachmentAnnotation as Nu, SoftMaskGroupOptions as O, PresetName as Oa, generateWinAnsiToUnicodeCmap as Oc, PdfUaError as Od, curveTo as Of, batchMerge as Oi, IncrementalObject as Ol, PdfA4Level as On, clearWasmCache as Oo, LabParams as Or, isGrayscaleImage as Os, Matrix as Ot, generateSquareAppearance as Ou, buildUnencryptedWrapper as P, minimalPreset as Pa, generateSrgbIccProfile as Pc, checkAccessibility as Pd, fillAndStroke as Pf, setPageLabels as Pi, parseExistingTrailer as Pl, sampleShadingColor as Pn, loadWasmModule as Po, JsonReport as Pr, ProgressInfo as Ps, getComponentDepths as Pt, CaretSymbol as Pu, CompareOptions as Q, dataMatrixToOperators as Qa, findChangedObjects as Qc, drawImageWithMatrix as Qd, saveIncremental as Qf, FieldExistsAsNonTerminalError as Qi, TimestampResult as Ql, STANDARD_SPOT_FUNCTIONS as Qn, DirectEmbedResult as Qo, DocumentPart as Qr, OverlayAlignment as Qs, signDeferred as Qt, PdfFreeTextAnnotation as Qu, attachAssociatedFiles as R, readBarcode as Ra, flattenTransparency as Rc, createXmpStream as Rd, moveTo as Rf, addBookmark as Ri, EKU_OIDS as Rl, renderCodeFrame as Rn, IfdEntry as Ro, SarifRun as Rr, OptimizeResult as Rs, upscale8To16 as Rt, PdfInkAnnotation as Ru, tagTableHeaderCell as S, applyOverflow as Sa, validateXmpMetadata as Sc, md5 as Sd, clip as Sf, preloadInlineWasm as Si, getCertificationLevel as Sl, OrderXType as Sn, base64Decode as So, reconstructParagraphs as Sr, IccProfile as Ss, FillItem as St, searchTextItems as Su, buildColorKeyMask as T, shrinkFontSize as Ta, getSupportedLevels as Tc, verifyOwnerPassword as Td, closeFillAndStroke as Tf, BatchProgressCallback as Ti, SignatureChainResult as Tl, generateXRechnungCii as Tn, PdfWorkerOptions as To, buildDocTimeStampDict as Tr, parseIccColorSpace as Ts, StrokeItem as Tt, generateHighlightAppearance as Tu, computeTileGrid as U, StyledBarcodeOptions as Ua, validatePdfA as Uc, beginArtifact as Ud, setLineJoin as Uf, FlattenOptions as Ui, extractEmbeddedRevocationData as Ul, generateCiiXml as Un, decodeTiffPage as Uo, MATHML_NAMESPACE as Ur, optimizeImage as Us, WoffInfo as Ut, PdfLineAnnotation as Uu, TileGrid as V, readEan13 as Va, PdfAValidationResult as Vc, PDFOperator as Vd, setFlatness as Vf, removeBookmark as Vi, validateKeyUsage as Vl, InvoiceLine as Vn, decodeTiff as Vo, toJsonReport as Vr, downscaleImage as Vs, decodeTileRegion as Vt, LineEndingStyle 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, OcrWord as X, DataMatrixOptions as Xa, IncrementalChange as Xc, endMarkedContent as Xd, IncrementalSaveResult as Xf, ExceededMaxLengthError as Xi, checkCertificateStatus as Xl, buildPdfX6OutputIntent as Xn, isWebPLossless as Xo, buildRequirement as Xr, initJpegWasm as Xs, ExternalSigner as Xt, PdfUnderlineAnnotation as Xu, OcrEngine as Y, pdf417ToOperators as Ya, linearizePdf as Yc, endArtifact as Yd, ChangeTracker as Yf, EncryptedPdfError as Yi, isCertificateRevoked as Yl, buildGtsPdfxVersion as Yn, isWebP as Yo, RequirementType as Yr, encodeJpegWasm as Ys, DeferredSignResult as Yt, PdfStrikeOutAnnotation as Yu, applyOcr as Z, DataMatrixResult as Za, computeObjectHash as Zc, wrapInMarkedContent as Zd, saveDocumentIncremental as Zf, FieldAlreadyExistsError as Zi, extractOcspUrl as Zl, validateBoxGeometry as Zn, DirectEmbedOptions as Zo, buildRequirements as Zr, isJpegWasmReady as Zs, SignatureAlgorithm as Zt, FreeTextAlignment as Zu, tagList as _, replaceTemplateVariables as _a, ParsedXmpMetadata as _c, sha384 as _d, showTextNextLine as _f, WasmModuleName as _i, ModificationViolation as _l, FallbackFont as _n, encodeCode128 as _o, buildCollection as _r, JpegMarkerInfo as _s, InterpretOptions as _t, computeSignatureHash as _u, AutoTagResult as a, NoSuchFieldError as aa, EnforcePdfAOptions as ac, parseAcrobatDate as ad, nextLine as af, AccessibilityPluginOptions as ai, CounterSignatureInfo as al, buildPdfVtDParts as an, ean8ToOperators as ao, nameHalftone as ar, ImageFormat as as, ExtractedImage as at, encodeContextTag as au, tagTable as b, OverflowMode as ba, extractXmpMetadata as bc, aesEncryptCBC as bd, buildSeparationColorSpace as bf, hasInlineWasmData as bi, MdpPermission as bl, resolveFallback as bn, BarcodeMatrix as bo, ReconstructOptions as br, computeImageDpi as bs, DisplayItem as bt, prepareForSigning as bu, PdfUa2Result as c, RichTextFieldReadError as ca, enforcePdfAFull as cc, createSandbox as cd, setFontSize as cf, metadataPlugin as ci, DiffEntry as cl, RenderOptions$1 as cn, ItfOptions as co, PostScriptFunction as cr, getSupportedFormats as cs, generateThumbnail as ct, encodeOID as cu, LIST_NUMBERING_KEY as d, HeaderFooterContent as da, generatePdfAXmpBytes as dc, setFieldValue as dd, setTextRenderingMode as df, ParsedPage as di, FieldLockInfo as dl, renderToPdf as dn, Code39Options as do, evaluateFunction as dr, convertTiffCmykToRgb as ds, renderDisplayListToCanvas as dt, encodeSequence as du, ForeignPageError as ea, RedactionResult as ec, PdfLinkAnnotation as ed, drawXObject as ef, ExtractedTable as ei, DssData as el, WorkerPool as en, calculateUpcCheckDigit as eo, buildSampledTransferFunction as er, embedTiffDirect as es, compareImages as et, parseTimestampResponse as eu, ListNumbering as f, HeaderFooterOptions as fa, StripOptions as fc, addVisibilityAction as fd, setTextRise as ff, StreamingParseResult as fi, FieldLockOptions as fl, FetchLike as fn, code39ToOperators as fo, MarkdownToPdfOptions as fr, embedTiffCmyk as fs, renderPageToCanvas as ft, encodeSet as fu, tagLink as g, formatDate as ga, stripProhibitedFeatures as gc, sha256 as gd, showTextHex as gf, PdfDocumentBuilder as gi, ModificationReport as gl, createRangeFetcher as gn, code128ToOperators as go, CollectionView as gr, injectJpegMetadata as gs, renderPageToImage as gt, PrepareAppearanceOptions as gu, tagHeading as h, applyHeaderFooterToPage as ha, countOccurrences as hc, validateFieldValue as hd, showTextArray as hf, StreamingPdfParser as hi, getFieldLocks as hl, RangeFetcher as hn, Code128Options as ho, CollectionSchemaField as hr, extractJpegMetadata as hs, rasterize as ht, ByteRangeResult as hu, AutoTagOptions as i, MissingOnValueCheckError as ia, validatePdfX as ic, formatDate$1 as id, moveTextSetLeading as if, tableToJson as ii, hasLtvData as il, RecordMetadata as in, ean13ToOperators as io, identityTransferFunction as ir, webpToPng as is, extractFonts as it, buildPkcs7Signature as iu, EncryptedPayloadOptions as j, applyPreset as ja, OutputIntentOptions as jc, PdfUaWarning as jd, ellipsePath as jf, PageLabelStyle as ji, TrailerInfo as jl, pdfA4Rules as jn, instantiateWasmModuleStreaming as jo, buildLab as jr, BatchOptimizeOptions as js, layoutParagraph as jt, generateUnderlineAppearance as ju, buildSoftMaskGroupExtGState as k, PresetOptions as ka, generateZapfDingbatsToUnicodeCmap as kc, PdfUaLevel as kd, curveToFinal as kf, processBatch as ki, IncrementalSaveOptions as kl, PdfA4Options as kn, configureWasmLoader as ko, buildCalGray as kr, DeduplicationReport as ks, findHyphenationPoints as kt, generateSquigglyAppearance as ku, buildPdfUa2Xmp as l, StreamingParseError as la, PdfAXmpOptions as lc, getFieldValue as ld, setLeading as lf, TimestampPluginOptions as li, DocumentDiff as ll, VNode as ln, encodeItf as lo, SampledFunction as lr, TiffCmykEmbedResult as ls, Canvas2DLike as lt, encodeOctetString as lu, tagFigure as m, applyHeaderFooter as ma, StrippedFeature as mc, AFSpecial_Format as md, showText as mf, StreamingParserOptions as mi, buildFieldLockDict as ml, RangeFetchOptions as mn, encodeCode39 as mo, CollectionOptions as mr, JpegMetadata as ms, RenderOptions as mt, encodeUtf8String as mu, index_d_exports as n, InvalidFieldNamePartError as na, buildPdfXOutputIntent as nc, TextAnnotationIcon as nd, endText as nf, extractTables as ni, buildDssDictionary as nl, createWorkerPool as nn, upcAToOperators as no, buildType1Halftone as nr, recompressWebP as ns, ExtractedFont as nt, SignatureOptions as nu, autoTagPage as o, PluginError as oa, EnforcePdfAResult as oc, AFNumber_Format as od, setCharacterSpacing as of, accessibilityPlugin as oi, addCounterSignature as ol, buildVtDpm as on, encodeEan13 as oo, ExponentialFunction as or, detectImageFormat as os, extractImages as ot, encodeInteger as ou, TaggedListItem as p, HeaderFooterPosition as pa, StripResult as pc, setFieldVisibility as pd, setWordSpacing as pf, StreamingParserEvent as pi, addFieldLock as pl, FetchLikeResponse as pn, computeCode39CheckDigit as po, markdownToPdf as pr, isCmykTiff as ps, RasterImage as pt, encodeUTCTime as pu, redactRegions as q, Pdf417Options as qa, getLinearizationInfo as qc, beginMarkedContentWithProperties as qd, isOpenTypeCFF as qf, BatchProcessingError as qi, downloadCrl as ql, PdfX6Variant as qn, WebPImage as qo, buildNamespacesArray as qr, JpegWasmModule as qs, readWoffHeader as qt, PdfHighlightAnnotation as qu, initWasm as r, InvalidPageSizeError as ra, enforcePdfX as rc, AFDate_FormatEx as rd, moveText as rf, tableToCsv as ri, embedLtvData as rl, PdfVtConformance as rn, calculateEanCheckDigit as ro, buildType5Halftone as rr, webpToJpeg as rs, FontFileFormat as rt, SignerInfo as ru, PdfUa2Issue as s, RemovePageFromEmptyDocumentError as sa, EnforcementAction as sc, formatNumber as sd, setFont as sf, MetadataPluginOptions as si, getCounterSignatures as sl, gtsPdfVtVersion as sn, encodeEan8 as so, PdfFunctionDef as sr, getImageFormatName as ss, ThumbnailOptions as st, encodeLength as su, InitWasmOptions as t, InvalidColorError as ta, applyRedaction as tc, PdfTextAnnotation as td, beginText as tf, TableExtractOptions as ti, LtvOptions as tl, WorkerPoolOptions as tn, encodeUpcA as to, buildThresholdHalftone as tr, encodePngFromPixels as ts, comparePages as tt, requestTimestamp as tu, validatePdfUa2 as u, UnexpectedFieldTypeError as ua, generatePdfAXmp as uc, resolveFieldReference as ud, setTextMatrix as uf, timestampPlugin as ui, diffSignedContent as ul, h as un, itfToOperators as uo, StitchingFunction as ur, TiffIfdEntry as us, CanvasRenderOptions as ut, encodePrintableString as uu, tagListItem as v, toAlpha as va, XmpIssue as vc, sha512 as vd, showTextWithSpacing as vf, getInlineWasmBytes as vi, ModificationViolationType as vl, FallbackRun as vn, encodeCode128Values as vo, Line as vr, analyzeJpegMarkers as vs, interpretContentStream as vt, embedSignature as vu, buildBlackPointCompensationExtGState as w, estimateTextWidth as wa, getProfile as wc, computeFileEncryptionKey as wd, closeAndStroke as wf, BatchOptions as wi, SignatureChainEntry as wl, generateOrderX as wn, PdfWorker as wo, DocTimeStampOptions as wr, extractIccProfile as ws, Rgba as wt, generateFreeTextAppearance as wu, tagTableDataCell as x, OverflowResult as xa, parseXmpMetadata as xc, rc4 as xd, circlePath as xf, isValidModuleName as xi, buildDocMdpReference as xl, splitByScript as xn, BarcodeOptions as xo, reconstructLines as xr, computeTargetDimensions as xs, DisplayList as xt, decodeJpeg2000 as xu, tagParagraph as y, toRoman as ya, XmpValidationResult as yc, aesDecryptCBC as yd, buildDeviceNColorSpace as yf, getInlineWasmSize as yi, detectModifications as yl, ScriptRun as yn, valuesToModules as yo, Paragraph as yr, ImageDpi as ys, interpretPage as yt, findSignatures as yu, registerEmbeddedFile as z, readCode128 as za, PdfAIssue as zc, parseXmpMetadata$1 as zd, rectangle as zf, getBookmarks as zi, validateCertificatePolicy as zl, FacturXProfile as zn, TiffDecodeOptions as zo, ValidationFinding as zr, RawImageData as zs, assembleTiles as zt, PdfStampAnnotation as zu };
|
|
11284
|
+
//# sourceMappingURL=index-D8FO08WM.d.mts.map
|