modern-pdf-lib 0.34.0 → 0.36.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 +14 -3
- package/dist/browser.d.cts +2 -2
- package/dist/browser.d.mts +2 -2
- package/dist/browser.mjs +4 -4
- package/dist/create.cjs +2 -2
- package/dist/create.mjs +2 -2
- package/dist/{index-Z4U1Jx0K.d.cts → index-06FgCx99.d.cts} +540 -3
- package/dist/index-06FgCx99.d.cts.map +1 -0
- package/dist/{index-C240uDcb.d.mts → index-Bg3y1BTk.d.mts} +540 -3
- package/dist/index-Bg3y1BTk.d.mts.map +1 -0
- package/dist/index.cjs +14 -3
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +4 -4
- package/dist/{layout-XgQY_Uba.mjs → layout-BZ9InKTl.mjs} +2 -2
- package/dist/{layout-ClbkITM3.cjs → layout-DvciSXsr.cjs} +2 -2
- package/dist/parse.cjs +1 -1
- package/dist/parse.mjs +1 -1
- package/dist/{pdfDocument-Dyj4AmT1.cjs → pdfDocument-D5qz7duP.cjs} +19 -1
- package/dist/{pdfDocument-EcHxUnR6.mjs → pdfDocument-Q0wrwKEZ.mjs} +2 -2
- package/dist/{src-CiUkSS81.mjs → src-4wfgzZvz.mjs} +2455 -9
- package/dist/{src-PxZwqIKQ.cjs → src-MIBq9xGq.cjs} +2518 -6
- package/package.json +1 -1
- package/dist/index-C240uDcb.d.mts.map +0 -1
- package/dist/index-Z4U1Jx0K.d.cts.map +0 -1
|
@@ -10177,6 +10177,543 @@ interface CertPathResult {
|
|
|
10177
10177
|
*/
|
|
10178
10178
|
declare function buildCertPath(leafCertDer: Uint8Array, intermediates: readonly Uint8Array[], anchors: readonly Uint8Array[]): CertPathResult;
|
|
10179
10179
|
//#endregion
|
|
10180
|
+
//#region src/security/threatScanner.d.ts
|
|
10181
|
+
/** Relative severity of a detected construct. */
|
|
10182
|
+
type ThreatSeverity = "low" | "medium" | "high";
|
|
10183
|
+
/** A single detected hostile/dangerous construct. */
|
|
10184
|
+
interface ThreatFinding {
|
|
10185
|
+
/** Stable category label (e.g. `"OpenAction"`, `"JavaScript"`). */
|
|
10186
|
+
category: string;
|
|
10187
|
+
/** Justified severity for this construct. */
|
|
10188
|
+
severity: ThreatSeverity;
|
|
10189
|
+
/** Human-readable description of what was found and why it matters. */
|
|
10190
|
+
detail: string;
|
|
10191
|
+
/** Indirect-object reference (`"12 0 R"`) when the finding is object-scoped. */
|
|
10192
|
+
objectRef?: string | undefined;
|
|
10193
|
+
}
|
|
10194
|
+
/** Aggregated scan result. */
|
|
10195
|
+
interface ThreatReport {
|
|
10196
|
+
/** All findings, in discovery order. */
|
|
10197
|
+
findings: ThreatFinding[];
|
|
10198
|
+
/** Maximum severity across {@link findings}, or `'none'` when empty. */
|
|
10199
|
+
riskLevel: ThreatSeverity | "none";
|
|
10200
|
+
}
|
|
10201
|
+
/**
|
|
10202
|
+
* Scan a PDF for hostile constructs and return a {@link ThreatReport}.
|
|
10203
|
+
*
|
|
10204
|
+
* The scan never executes any document content. It parses the PDF and walks
|
|
10205
|
+
* the parsed object graph (see the module header for the precise method and
|
|
10206
|
+
* ISO 32000 references). When parsing fails, a guarded raw-byte fallback runs.
|
|
10207
|
+
*
|
|
10208
|
+
* @param pdf Raw PDF bytes.
|
|
10209
|
+
* @returns A report of findings plus the aggregate `riskLevel`.
|
|
10210
|
+
*/
|
|
10211
|
+
declare function scanPdfThreats(pdf: Uint8Array): Promise<ThreatReport>;
|
|
10212
|
+
//#endregion
|
|
10213
|
+
//#region src/security/sanitize.d.ts
|
|
10214
|
+
/**
|
|
10215
|
+
* Options controlling which classes of content the sanitizer removes.
|
|
10216
|
+
*
|
|
10217
|
+
* Every flag defaults to `true` — i.e. by default all four classes are
|
|
10218
|
+
* stripped. Set a flag to `false` to preserve that class.
|
|
10219
|
+
*/
|
|
10220
|
+
interface SanitizeOptions {
|
|
10221
|
+
/** Remove document JavaScript (`/Names /JavaScript` + `/AA`). Default `true`. */
|
|
10222
|
+
javascript?: boolean | undefined;
|
|
10223
|
+
/** Remove the auto-run `/OpenAction`. Default `true`. */
|
|
10224
|
+
openActions?: boolean | undefined;
|
|
10225
|
+
/** Remove embedded files (`/Names /EmbeddedFiles` + `/AF`). Default `true`. */
|
|
10226
|
+
embeddedFiles?: boolean | undefined;
|
|
10227
|
+
/** Strip the XMP `/Metadata` stream + the `/Info` dictionary. Default `true`. */
|
|
10228
|
+
metadata?: boolean | undefined;
|
|
10229
|
+
}
|
|
10230
|
+
/** Identifies a class of content that the sanitizer can remove. */
|
|
10231
|
+
type SanitizeClass = "javascript" | "openActions" | "embeddedFiles" | "metadata";
|
|
10232
|
+
/** A human-readable summary of what {@link sanitizePdf} actually removed. */
|
|
10233
|
+
interface SanitizeReport {
|
|
10234
|
+
/**
|
|
10235
|
+
* The classes of content that were present in the source PDF and have
|
|
10236
|
+
* been removed. Only classes that were actually present (and enabled)
|
|
10237
|
+
* appear here — a clean document yields an empty array.
|
|
10238
|
+
*/
|
|
10239
|
+
removed: SanitizeClass[];
|
|
10240
|
+
}
|
|
10241
|
+
/**
|
|
10242
|
+
* Produce a cleaned copy of a PDF with active / hidden content neutralised.
|
|
10243
|
+
*
|
|
10244
|
+
* Loads the PDF, removes each enabled class of content from the parsed
|
|
10245
|
+
* object graph, prunes the orphaned objects, re-serializes the cleaned
|
|
10246
|
+
* document, and returns the new bytes alongside a report listing the
|
|
10247
|
+
* classes that were actually present and removed.
|
|
10248
|
+
*
|
|
10249
|
+
* @param pdf The source PDF bytes.
|
|
10250
|
+
* @param options Which classes to remove (each defaults to `true`).
|
|
10251
|
+
* @returns The cleaned PDF bytes and a {@link SanitizeReport}.
|
|
10252
|
+
*
|
|
10253
|
+
* @example
|
|
10254
|
+
* ```ts
|
|
10255
|
+
* const { pdf, report } = await sanitizePdf(bytes);
|
|
10256
|
+
* // report.removed === ['javascript', 'embeddedFiles', 'metadata']
|
|
10257
|
+
* ```
|
|
10258
|
+
*/
|
|
10259
|
+
declare function sanitizePdf(pdf: Uint8Array, options?: SanitizeOptions): Promise<{
|
|
10260
|
+
pdf: Uint8Array;
|
|
10261
|
+
report: SanitizeReport;
|
|
10262
|
+
}>;
|
|
10263
|
+
//#endregion
|
|
10264
|
+
//#region src/security/redactionVerifier.d.ts
|
|
10265
|
+
/**
|
|
10266
|
+
* A rectangular region to check for redaction leaks.
|
|
10267
|
+
*
|
|
10268
|
+
* Coordinates are in PDF user space: origin bottom-left, y-up, units in PDF
|
|
10269
|
+
* points. `(x, y)` is the **lower-left** corner; `width` and `height` extend
|
|
10270
|
+
* in the +x and +y directions. This is the same convention as `RedactRect`
|
|
10271
|
+
* in `../render/redactContent.js`.
|
|
10272
|
+
*/
|
|
10273
|
+
interface RedactionRegion {
|
|
10274
|
+
/** Zero-based page index this region applies to. */
|
|
10275
|
+
page: number;
|
|
10276
|
+
/** X coordinate of the lower-left corner, in PDF points. */
|
|
10277
|
+
x: number;
|
|
10278
|
+
/** Y coordinate of the lower-left corner, in PDF points. */
|
|
10279
|
+
y: number;
|
|
10280
|
+
/** Width of the region in PDF points (must be > 0 to match anything). */
|
|
10281
|
+
width: number;
|
|
10282
|
+
/** Height of the region in PDF points (must be > 0 to match anything). */
|
|
10283
|
+
height: number;
|
|
10284
|
+
}
|
|
10285
|
+
/**
|
|
10286
|
+
* A single piece of text found still present under a redaction region — i.e. a
|
|
10287
|
+
* redaction that did not actually remove the underlying content.
|
|
10288
|
+
*/
|
|
10289
|
+
interface RedactionLeak {
|
|
10290
|
+
/** Zero-based page index where the leak was found. */
|
|
10291
|
+
page: number;
|
|
10292
|
+
/** The still-extractable text (decoded to Unicode). */
|
|
10293
|
+
text: string;
|
|
10294
|
+
/** Text-origin X of the leaking run (bottom-left, y-up), in PDF points. */
|
|
10295
|
+
x: number;
|
|
10296
|
+
/** Text-origin Y of the leaking run (bottom-left, y-up), in PDF points. */
|
|
10297
|
+
y: number;
|
|
10298
|
+
}
|
|
10299
|
+
/** The outcome of a {@link verifyRedactions} call. */
|
|
10300
|
+
interface RedactionVerificationReport {
|
|
10301
|
+
/** Every text run found still present under a region. */
|
|
10302
|
+
leaks: RedactionLeak[];
|
|
10303
|
+
/** True iff {@link leaks} is empty (no failed redactions detected). */
|
|
10304
|
+
clean: boolean;
|
|
10305
|
+
/** Number of regions that were checked. */
|
|
10306
|
+
regionsChecked: number;
|
|
10307
|
+
}
|
|
10308
|
+
/**
|
|
10309
|
+
* Verify that the given regions of a PDF contain no still-extractable text,
|
|
10310
|
+
* detecting fake / failed redactions.
|
|
10311
|
+
*
|
|
10312
|
+
* For each region, the corresponding page's text is extracted with positions
|
|
10313
|
+
* and any text run whose bounding box intersects the region is reported as a
|
|
10314
|
+
* {@link RedactionLeak}. A clean result means no text was found under any
|
|
10315
|
+
* region (the redactions truly removed the content, or there was none to begin
|
|
10316
|
+
* with).
|
|
10317
|
+
*
|
|
10318
|
+
* @param pdf The PDF file bytes to inspect.
|
|
10319
|
+
* @param regions The regions to check (REQUIRED — see the module docs for why
|
|
10320
|
+
* automatic region detection is not performed). Coordinates are
|
|
10321
|
+
* in PDF user space: origin bottom-left, y-up, units in points;
|
|
10322
|
+
* `(x, y)` is the lower-left corner.
|
|
10323
|
+
* @returns A report listing every leak; `clean` is true iff there are
|
|
10324
|
+
* none.
|
|
10325
|
+
* @throws `TypeError` if `regions` is omitted or empty.
|
|
10326
|
+
*
|
|
10327
|
+
* @example
|
|
10328
|
+
* ```ts
|
|
10329
|
+
* const report = await verifyRedactions(pdfBytes, [
|
|
10330
|
+
* { page: 0, x: 45, y: 545, width: 120, height: 25 },
|
|
10331
|
+
* ]);
|
|
10332
|
+
* if (!report.clean) {
|
|
10333
|
+
* for (const leak of report.leaks) {
|
|
10334
|
+
* console.warn(`Leak on page ${leak.page}: "${leak.text}"`);
|
|
10335
|
+
* }
|
|
10336
|
+
* }
|
|
10337
|
+
* ```
|
|
10338
|
+
*/
|
|
10339
|
+
declare function verifyRedactions(pdf: Uint8Array, regions?: readonly RedactionRegion[]): Promise<RedactionVerificationReport>;
|
|
10340
|
+
//#endregion
|
|
10341
|
+
//#region src/security/encryptionInspector.d.ts
|
|
10342
|
+
/**
|
|
10343
|
+
* Decoded `/P` permission flags (ISO 32000-1:2008 Table 22).
|
|
10344
|
+
*
|
|
10345
|
+
* Each flag is `true` when the corresponding capability is **granted**
|
|
10346
|
+
* by the document's permission integer.
|
|
10347
|
+
*/
|
|
10348
|
+
interface PermissionFlags {
|
|
10349
|
+
/** Bit 3: print the document (possibly only low resolution). */
|
|
10350
|
+
print: boolean;
|
|
10351
|
+
/** Bit 4: modify the contents of the document. */
|
|
10352
|
+
modify: boolean;
|
|
10353
|
+
/** Bit 5: copy or otherwise extract text and graphics. */
|
|
10354
|
+
copy: boolean;
|
|
10355
|
+
/** Bit 6: add or modify text annotations / fill in form fields. */
|
|
10356
|
+
annotate: boolean;
|
|
10357
|
+
/** Bit 9: fill in existing interactive form fields. */
|
|
10358
|
+
fillForms: boolean;
|
|
10359
|
+
/** Bit 5: extract text and graphics (alias of {@link copy}, Table 22). */
|
|
10360
|
+
extract: boolean;
|
|
10361
|
+
/** Bit 11: assemble the document (insert/rotate/delete pages). */
|
|
10362
|
+
assemble: boolean;
|
|
10363
|
+
/** Bit 12: print to a high-resolution representation. */
|
|
10364
|
+
printHighRes: boolean;
|
|
10365
|
+
}
|
|
10366
|
+
/**
|
|
10367
|
+
* A report describing a PDF's encryption + permission posture.
|
|
10368
|
+
*
|
|
10369
|
+
* When `encrypted` is `false` all other fields are absent.
|
|
10370
|
+
*/
|
|
10371
|
+
interface EncryptionReport {
|
|
10372
|
+
/** Whether the trailer references an `/Encrypt` dictionary. */
|
|
10373
|
+
encrypted: boolean;
|
|
10374
|
+
/** The bulk cipher: `'rc4'` or `'aes'` (omitted if undeterminable). */
|
|
10375
|
+
method?: "rc4" | "aes" | undefined;
|
|
10376
|
+
/** Key length in bits (40, 128, or 256). */
|
|
10377
|
+
keyBits?: number | undefined;
|
|
10378
|
+
/** The `/V` algorithm version. */
|
|
10379
|
+
version?: number | undefined;
|
|
10380
|
+
/** The `/R` standard-security-handler revision. */
|
|
10381
|
+
revision?: number | undefined;
|
|
10382
|
+
/** The security handler: `'password'` (/Standard) or `'publicKey'`. */
|
|
10383
|
+
handler?: "password" | "publicKey" | undefined;
|
|
10384
|
+
/**
|
|
10385
|
+
* Best-effort: whether the document opens with an **empty** user
|
|
10386
|
+
* password (the common "owner-only protection" case). Only set for
|
|
10387
|
+
* the standard password handler; omitted when it cannot be tested.
|
|
10388
|
+
*/
|
|
10389
|
+
emptyUserPassword?: boolean | undefined;
|
|
10390
|
+
/** Decoded `/P` permission flags (standard handler only). */
|
|
10391
|
+
permissions?: PermissionFlags | undefined;
|
|
10392
|
+
}
|
|
10393
|
+
/**
|
|
10394
|
+
* Inspect a PDF's encryption + permission posture.
|
|
10395
|
+
*
|
|
10396
|
+
* @param pdf The raw PDF file bytes.
|
|
10397
|
+
* @returns A {@link EncryptionReport}. If the trailer has no
|
|
10398
|
+
* `/Encrypt` entry (or the file is unparseable) the report is
|
|
10399
|
+
* `{ encrypted: false }`.
|
|
10400
|
+
*/
|
|
10401
|
+
declare function inspectEncryption(pdf: Uint8Array): Promise<EncryptionReport>;
|
|
10402
|
+
//#endregion
|
|
10403
|
+
//#region src/text/bidi.d.ts
|
|
10404
|
+
/**
|
|
10405
|
+
* @module text/bidi
|
|
10406
|
+
*
|
|
10407
|
+
* The Unicode Bidirectional Algorithm (UAX #9) for laying out mixed
|
|
10408
|
+
* left-to-right / right-to-left text.
|
|
10409
|
+
*
|
|
10410
|
+
* Reference: Unicode Standard Annex #9, "Unicode Bidirectional Algorithm",
|
|
10411
|
+
* revision 49 (Unicode 16.0.0). The rule labels referenced throughout this
|
|
10412
|
+
* file (P2/P3, X1–X10, W1–W7, N0–N2, I1/I2, L1/L2) are the rule numbers from
|
|
10413
|
+
* that document: https://www.unicode.org/reports/tr9/
|
|
10414
|
+
*
|
|
10415
|
+
* ## Scope and conformance
|
|
10416
|
+
*
|
|
10417
|
+
* This implements the full structural pipeline of UAX #9:
|
|
10418
|
+
* - P2/P3 paragraph base level (or an explicit / first-strong base),
|
|
10419
|
+
* - X1–X8 explicit embeddings & overrides (LRE/RLE/LRO/RLO/PDF),
|
|
10420
|
+
* - X5a–X6a directional isolates (LRI/RLI/FSI/PDI),
|
|
10421
|
+
* - X9/X10 removal of formatting characters and isolating run sequences,
|
|
10422
|
+
* - W1–W7 weak-type resolution,
|
|
10423
|
+
* - N0 paired brackets, N1/N2 neutral resolution,
|
|
10424
|
+
* - I1/I2 implicit level resolution,
|
|
10425
|
+
* - L1 reset of trailing/segment whitespace to the paragraph level,
|
|
10426
|
+
* - L2 reordering of the resolved levels into visual order.
|
|
10427
|
+
*
|
|
10428
|
+
* The one deliberate simplification is the **Bidi_Class lookup table**: rather
|
|
10429
|
+
* than embedding the entire ~150 KB Unicode Character Database, this module
|
|
10430
|
+
* uses a COMPACT, RANGE-BASED classifier (see {@link bidiClass}) covering the
|
|
10431
|
+
* code points that matter in practice for PDF text layout — Latin, Hebrew
|
|
10432
|
+
* (U+0590–05FF), Arabic (U+0600–06FF, U+0750–077F), the Arabic-Indic and
|
|
10433
|
+
* European digit groups, common neutrals/weaks, and every explicit-format and
|
|
10434
|
+
* isolate-format character. Code points outside the covered ranges default to
|
|
10435
|
+
* the rule-conformant fallbacks Unicode assigns to unassigned blocks (`R`/`AL`
|
|
10436
|
+
* for the Hebrew/Arabic/Thaana/Syriac default-RTL ranges, otherwise `L`). The
|
|
10437
|
+
* paired-bracket data for N0 likewise covers the ASCII and common typographic
|
|
10438
|
+
* bracket pairs rather than the full BidiBrackets.txt file.
|
|
10439
|
+
*
|
|
10440
|
+
* Because the class table is a curated subset (not the full UCD), this module
|
|
10441
|
+
* does NOT claim blanket UBA conformance for arbitrary Unicode input; it is
|
|
10442
|
+
* correct for the covered scripts and degrades to the standard default classes
|
|
10443
|
+
* elsewhere. The algorithm itself is the complete UAX #9 procedure.
|
|
10444
|
+
*
|
|
10445
|
+
* Pure logic — no Buffer, no fs, no require(); ESM only.
|
|
10446
|
+
*/
|
|
10447
|
+
/** Requested or resolved base direction for a paragraph. */
|
|
10448
|
+
type BidiDirection = "ltr" | "rtl" | "auto";
|
|
10449
|
+
/**
|
|
10450
|
+
* A maximal contiguous slice of the input that shares a single resolved
|
|
10451
|
+
* embedding level (and therefore a single visual direction).
|
|
10452
|
+
*/
|
|
10453
|
+
interface BidiRun {
|
|
10454
|
+
/** The logical-order substring covered by this run. */
|
|
10455
|
+
text: string;
|
|
10456
|
+
/** Resolved embedding level (even = LTR, odd = RTL). */
|
|
10457
|
+
level: number;
|
|
10458
|
+
/** Visual direction implied by the level's parity. */
|
|
10459
|
+
direction: "ltr" | "rtl";
|
|
10460
|
+
/** UTF-16 index into the original string where this run starts. */
|
|
10461
|
+
start: number;
|
|
10462
|
+
/** Length of this run in UTF-16 code units. */
|
|
10463
|
+
length: number;
|
|
10464
|
+
}
|
|
10465
|
+
/** Result of {@link resolveBidi}. */
|
|
10466
|
+
interface BidiResult {
|
|
10467
|
+
/** Same-level runs in logical order, partitioning the whole string. */
|
|
10468
|
+
runs: BidiRun[];
|
|
10469
|
+
/** Resolved embedding level for every UTF-16 code unit of the input. */
|
|
10470
|
+
levels: number[];
|
|
10471
|
+
/**
|
|
10472
|
+
* Visual order: `visualOrder[v]` is the logical index of the code unit that
|
|
10473
|
+
* should be painted at visual position `v` (left to right).
|
|
10474
|
+
*/
|
|
10475
|
+
visualOrder: number[];
|
|
10476
|
+
/** Resolved paragraph embedding level (0 = LTR, 1 = RTL). */
|
|
10477
|
+
baseLevel: number;
|
|
10478
|
+
}
|
|
10479
|
+
/**
|
|
10480
|
+
* Run the Unicode Bidirectional Algorithm (UAX #9) over `text`.
|
|
10481
|
+
*
|
|
10482
|
+
* Indices in the result refer to UTF-16 code units of the input string (the
|
|
10483
|
+
* same units JavaScript's `string[i]` and `.length` use). Astral characters
|
|
10484
|
+
* (surrogate pairs) are classified by their scalar value but occupy two code
|
|
10485
|
+
* units, both assigned the same level.
|
|
10486
|
+
*
|
|
10487
|
+
* @param text The logical-order input string.
|
|
10488
|
+
* @param base Paragraph direction: `'ltr'` / `'rtl'` force the base level;
|
|
10489
|
+
* `'auto'` (the default) derives it from the first strong character (P2/P3).
|
|
10490
|
+
* @returns The resolved levels, same-level runs, visual order and base level.
|
|
10491
|
+
*/
|
|
10492
|
+
declare function resolveBidi(text: string, base?: BidiDirection): BidiResult;
|
|
10493
|
+
/**
|
|
10494
|
+
* Convenience wrapper that returns `text` reordered into visual (left-to-right)
|
|
10495
|
+
* order via {@link resolveBidi}'s L2 result.
|
|
10496
|
+
*
|
|
10497
|
+
* Note: this performs pure reordering of code units. It does not apply Arabic
|
|
10498
|
+
* cursive shaping or mirror neutral glyphs; callers that need shaped glyphs
|
|
10499
|
+
* should pass the resolved runs to a shaping engine.
|
|
10500
|
+
*
|
|
10501
|
+
* @param text The logical-order input string.
|
|
10502
|
+
* @param base Paragraph direction (see {@link resolveBidi}).
|
|
10503
|
+
* @returns The visually reordered string.
|
|
10504
|
+
*/
|
|
10505
|
+
declare function reorderVisual(text: string, base?: BidiDirection): string;
|
|
10506
|
+
//#endregion
|
|
10507
|
+
//#region src/assets/font/variableFont.d.ts
|
|
10508
|
+
/**
|
|
10509
|
+
* @module assets/font/variableFont
|
|
10510
|
+
*
|
|
10511
|
+
* OpenType variable-font axis/instance model parsing — the 'fvar' (font
|
|
10512
|
+
* variations) and 'avar' (axis variations) tables.
|
|
10513
|
+
*
|
|
10514
|
+
* This module exposes the *variation model* of an OpenType variable font:
|
|
10515
|
+
* - the design-variation axes ('fvar' VariationAxisRecord array),
|
|
10516
|
+
* - the named instances ('fvar' InstanceRecord array),
|
|
10517
|
+
* - coordinate normalization from user scale to the normalized [-1, 0, +1]
|
|
10518
|
+
* scale, optionally refined by an 'avar' segment map.
|
|
10519
|
+
*
|
|
10520
|
+
* SCOPE NOTE — explicitly OUT OF SCOPE for this module:
|
|
10521
|
+
* Actual glyph-outline instancing (baking 'gvar'/'cvar' deltas into a static
|
|
10522
|
+
* font at a chosen coordinate, or interpolating 'glyf' outlines) is NOT
|
|
10523
|
+
* performed here. This module only models axes/instances and normalizes
|
|
10524
|
+
* coordinates, which is the foundation those operations build on.
|
|
10525
|
+
*
|
|
10526
|
+
* NAME RESOLUTION NOTE:
|
|
10527
|
+
* The human-readable axis/instance names live in the 'name' table. Decoding
|
|
10528
|
+
* them is optional per the task; this module does NOT resolve them and leaves
|
|
10529
|
+
* `name` undefined, preserving the numeric name IDs (`axisNameID` /
|
|
10530
|
+
* `subfamilyNameID` / `postScriptNameID`) so a caller can resolve them later.
|
|
10531
|
+
*
|
|
10532
|
+
* Spec references (OpenType 1.9.1, Microsoft Typography):
|
|
10533
|
+
* - 'fvar': https://learn.microsoft.com/en-us/typography/opentype/spec/fvar
|
|
10534
|
+
* - 'avar': https://learn.microsoft.com/en-us/typography/opentype/spec/avar
|
|
10535
|
+
* - Data types (Fixed, F2DOT14, Tag, Offset16):
|
|
10536
|
+
* https://learn.microsoft.com/en-us/typography/opentype/spec/otff#data-types
|
|
10537
|
+
* - Normalization pseudocode:
|
|
10538
|
+
* https://learn.microsoft.com/en-us/typography/opentype/spec/otvaroverview#coordinate-scales-and-normalization
|
|
10539
|
+
*
|
|
10540
|
+
* No external dependencies. No Buffer — Uint8Array + DataView only. Big-endian.
|
|
10541
|
+
*/
|
|
10542
|
+
/**
|
|
10543
|
+
* A single design-variation axis from the 'fvar' VariationAxisRecord.
|
|
10544
|
+
*
|
|
10545
|
+
* Coordinate values (`minValue`, `defaultValue`, `maxValue`) are in *user
|
|
10546
|
+
* scale* (the scale specific to the axis tag, e.g. 100..900 for 'wght').
|
|
10547
|
+
*/
|
|
10548
|
+
interface VariationAxis {
|
|
10549
|
+
/** Four-character axis tag, e.g. 'wght', 'wdth', 'ital', 'opsz', 'slnt'. */
|
|
10550
|
+
tag: string;
|
|
10551
|
+
/** Minimum user-scale coordinate value. */
|
|
10552
|
+
minValue: number;
|
|
10553
|
+
/** Default user-scale coordinate value (the default instance). */
|
|
10554
|
+
defaultValue: number;
|
|
10555
|
+
/** Maximum user-scale coordinate value. */
|
|
10556
|
+
maxValue: number;
|
|
10557
|
+
/**
|
|
10558
|
+
* Human-readable axis name resolved from the 'name' table via `axisNameID`.
|
|
10559
|
+
* Not resolved by this module — always `undefined` here.
|
|
10560
|
+
*/
|
|
10561
|
+
name?: string | undefined;
|
|
10562
|
+
/** Axis qualifier flags. Bit 0 (0x0001) = HIDDEN_AXIS; others reserved. */
|
|
10563
|
+
flags: number;
|
|
10564
|
+
}
|
|
10565
|
+
/**
|
|
10566
|
+
* A named instance (named design position) from an 'fvar' InstanceRecord.
|
|
10567
|
+
*/
|
|
10568
|
+
interface NamedInstance {
|
|
10569
|
+
/**
|
|
10570
|
+
* Human-readable subfamily name resolved from the 'name' table via `nameId`.
|
|
10571
|
+
* Not resolved by this module — always `undefined` here.
|
|
10572
|
+
*/
|
|
10573
|
+
name?: string | undefined;
|
|
10574
|
+
/** Axis tag → user-scale coordinate for this instance. */
|
|
10575
|
+
coordinates: Record<string, number>;
|
|
10576
|
+
/** The 'name' table name ID for this instance's subfamily name. */
|
|
10577
|
+
nameId: number;
|
|
10578
|
+
/**
|
|
10579
|
+
* Optional 'name' table name ID for this instance's PostScript name.
|
|
10580
|
+
* Present only when the font's InstanceRecord size includes it
|
|
10581
|
+
* (instanceSize == axisCount*4 + 6). A value of 0xFFFF means "ignore"
|
|
10582
|
+
* and is normalized to `undefined`.
|
|
10583
|
+
*/
|
|
10584
|
+
postScriptNameId?: number | undefined;
|
|
10585
|
+
}
|
|
10586
|
+
/**
|
|
10587
|
+
* A single 'avar' segment map for one axis: an ordered list of
|
|
10588
|
+
* (fromCoordinate, toCoordinate) pairs in normalized [-1, 1] space.
|
|
10589
|
+
*/
|
|
10590
|
+
type AvarSegmentMap = ReadonlyArray<{
|
|
10591
|
+
/** Default-normalized input coordinate (F2DOT14, in [-1, 1]). */fromCoordinate: number; /** Modified normalized output coordinate (F2DOT14, in [-1, 1]). */
|
|
10592
|
+
toCoordinate: number;
|
|
10593
|
+
}>;
|
|
10594
|
+
/**
|
|
10595
|
+
* The parsed variable-font model.
|
|
10596
|
+
*/
|
|
10597
|
+
interface VariableFontInfo {
|
|
10598
|
+
/** True iff the font has an 'fvar' table with at least one axis. */
|
|
10599
|
+
isVariable: boolean;
|
|
10600
|
+
/** The design-variation axes, in 'fvar' order. */
|
|
10601
|
+
axes: VariationAxis[];
|
|
10602
|
+
/** The named instances, in 'fvar' order. */
|
|
10603
|
+
namedInstances: NamedInstance[];
|
|
10604
|
+
/**
|
|
10605
|
+
* Parsed 'avar' segment maps, one per axis in 'fvar' order, if an 'avar'
|
|
10606
|
+
* table is present and well-formed. Undefined when there is no 'avar' table.
|
|
10607
|
+
*/
|
|
10608
|
+
avar?: AvarSegmentMap[] | undefined;
|
|
10609
|
+
}
|
|
10610
|
+
/**
|
|
10611
|
+
* Parse the variable-font model from raw OpenType/TrueType font bytes.
|
|
10612
|
+
*
|
|
10613
|
+
* If the font has no 'fvar' table (or it is malformed / has zero axes), the
|
|
10614
|
+
* font is treated as non-variable and
|
|
10615
|
+
* `{ isVariable: false, axes: [], namedInstances: [] }` is returned.
|
|
10616
|
+
*
|
|
10617
|
+
* @param fontData Raw font file bytes (sfnt: TrueType 0x00010000 or 'OTTO' CFF).
|
|
10618
|
+
* @returns The parsed {@link VariableFontInfo}.
|
|
10619
|
+
*/
|
|
10620
|
+
declare function parseVariableFont(fontData: Uint8Array): VariableFontInfo;
|
|
10621
|
+
/**
|
|
10622
|
+
* Normalize a user-scale coordinate for an axis to the normalized [-1, 0, +1]
|
|
10623
|
+
* scale, per the OpenType default-normalization algorithm.
|
|
10624
|
+
*
|
|
10625
|
+
* Steps:
|
|
10626
|
+
* 1. Clamp `userValue` to the axis's [minValue, maxValue].
|
|
10627
|
+
* 2. Map to normalized space: minValue→-1, defaultValue→0, maxValue→+1, with
|
|
10628
|
+
* linear interpolation on each side of the default (note: the slopes on the
|
|
10629
|
+
* two sides differ unless the default is exactly centered).
|
|
10630
|
+
* 3. If an 'avar' `segmentMap` is supplied, apply it to the result; otherwise
|
|
10631
|
+
* no avar adjustment is made (the caller can pass `info.avar[axisIndex]`).
|
|
10632
|
+
*
|
|
10633
|
+
* @param axis The axis whose user-scale bounds define the normalization.
|
|
10634
|
+
* @param userValue The user-scale coordinate (e.g. 250 for a 'wght' axis).
|
|
10635
|
+
* @param avar Optional 'avar' segment map for this axis.
|
|
10636
|
+
* @returns The normalized coordinate in [-1, 1].
|
|
10637
|
+
*/
|
|
10638
|
+
declare function normalizeAxisCoordinate(axis: VariationAxis, userValue: number, avar?: AvarSegmentMap | undefined): number;
|
|
10639
|
+
/**
|
|
10640
|
+
* Resolve a named instance's coordinates against the font's axes.
|
|
10641
|
+
*
|
|
10642
|
+
* Produces a complete axis-tag → user-scale-coordinate map covering every axis
|
|
10643
|
+
* in the font: any axis the instance does not specify is filled with that
|
|
10644
|
+
* axis's `defaultValue`, and any specified coordinate is clamped to the axis's
|
|
10645
|
+
* [minValue, maxValue] range (per the fvar "Variation Instance Selection"
|
|
10646
|
+
* rules). Coordinates for tags not present on any axis are ignored.
|
|
10647
|
+
*
|
|
10648
|
+
* @param info The parsed variable-font model.
|
|
10649
|
+
* @param instance The named instance to resolve.
|
|
10650
|
+
* @returns A validated axis-tag → user-scale coordinate map.
|
|
10651
|
+
*/
|
|
10652
|
+
declare function resolveInstanceCoordinates(info: VariableFontInfo, instance: NamedInstance): Record<string, number>;
|
|
10653
|
+
//#endregion
|
|
10654
|
+
//#region src/assets/font/colorFont.d.ts
|
|
10655
|
+
/**
|
|
10656
|
+
* A resolved COLR layer: the outline glyph id, the CPAL palette-entry index,
|
|
10657
|
+
* and the RGBA color (0..255 per channel) that index resolves to in the
|
|
10658
|
+
* selected palette.
|
|
10659
|
+
*/
|
|
10660
|
+
interface ColorGlyphLayer {
|
|
10661
|
+
/** The glyph id of the outline drawn for this layer. */
|
|
10662
|
+
glyphId: number;
|
|
10663
|
+
/** The CPAL palette-entry index used to color this layer. */
|
|
10664
|
+
paletteIndex: number;
|
|
10665
|
+
/** Resolved color as [r, g, b, a], each 0..255. */
|
|
10666
|
+
rgba: [number, number, number, number];
|
|
10667
|
+
}
|
|
10668
|
+
/** A single CPAL palette: an ordered list of RGBA colors (0..255 per channel). */
|
|
10669
|
+
interface CpalPalette {
|
|
10670
|
+
/** Palette entries as [r, g, b, a], each 0..255. */
|
|
10671
|
+
colors: [number, number, number, number][];
|
|
10672
|
+
}
|
|
10673
|
+
/** Summary of a font's color capability and its CPAL palettes. */
|
|
10674
|
+
interface ColorFontInfo {
|
|
10675
|
+
/** True if the font contains a 'COLR' table (i.e. has color glyphs). */
|
|
10676
|
+
hasColor: boolean;
|
|
10677
|
+
/** Number of palettes in the 'CPAL' table (0 if no CPAL table). */
|
|
10678
|
+
numPalettes: number;
|
|
10679
|
+
/** The parsed CPAL palettes (empty if no CPAL table). */
|
|
10680
|
+
palettes: CpalPalette[];
|
|
10681
|
+
}
|
|
10682
|
+
/**
|
|
10683
|
+
* Parse a font's color capability and CPAL palettes.
|
|
10684
|
+
*
|
|
10685
|
+
* `hasColor` is true iff the font contains a 'COLR' table. The palettes come
|
|
10686
|
+
* from the 'CPAL' table (which is required whenever 'COLR' is present, per the
|
|
10687
|
+
* OpenType spec). Color records are returned as RGBA (converted from the on-disk
|
|
10688
|
+
* BGRA layout).
|
|
10689
|
+
*
|
|
10690
|
+
* @param fontData - Raw sfnt font bytes (TrueType 0x00010000 or 'OTTO').
|
|
10691
|
+
* @returns Color info; `{ hasColor: false, numPalettes: 0, palettes: [] }` if
|
|
10692
|
+
* the font has no COLR/CPAL tables or cannot be parsed.
|
|
10693
|
+
*/
|
|
10694
|
+
declare function parseColorFont(fontData: Uint8Array): ColorFontInfo;
|
|
10695
|
+
/**
|
|
10696
|
+
* Resolve the COLR v0 layers of a base glyph into colored layers.
|
|
10697
|
+
*
|
|
10698
|
+
* For each layer of the requested base glyph, the layer's outline glyph id is
|
|
10699
|
+
* returned together with its CPAL palette-entry index and the RGBA color that
|
|
10700
|
+
* index resolves to in the selected palette.
|
|
10701
|
+
*
|
|
10702
|
+
* A glyph that is **not** a COLR base glyph (or a font with no COLR/CPAL table)
|
|
10703
|
+
* returns `[]` — such a glyph is drawn as a normal monochrome glyph.
|
|
10704
|
+
*
|
|
10705
|
+
* The special palette index `0xFFFF` ("foreground color") is preserved on the
|
|
10706
|
+
* layer's `paletteIndex` but, having no palette entry, resolves to the neutral
|
|
10707
|
+
* fallback `[0, 0, 0, 255]`; a renderer should substitute the active text color.
|
|
10708
|
+
*
|
|
10709
|
+
* @param fontData - Raw sfnt font bytes.
|
|
10710
|
+
* @param glyphId - The base glyph id to expand.
|
|
10711
|
+
* @param paletteIndex - Which CPAL palette to resolve colors from. Defaults to
|
|
10712
|
+
* palette 0 (the default palette). Out-of-range values fall back to palette 0.
|
|
10713
|
+
* @returns The ordered (bottom-first) list of colored layers, or `[]`.
|
|
10714
|
+
*/
|
|
10715
|
+
declare function getColorGlyphLayers(fontData: Uint8Array, glyphId: number, paletteIndex?: number): ColorGlyphLayer[];
|
|
10716
|
+
//#endregion
|
|
10180
10717
|
//#region src/render/matrix.d.ts
|
|
10181
10718
|
/**
|
|
10182
10719
|
* @module render/matrix
|
|
@@ -11582,7 +12119,7 @@ declare function parseCiiXml(xml: string): Invoice;
|
|
|
11582
12119
|
*/
|
|
11583
12120
|
declare function detectFacturXProfile(xml: string): FacturXProfile | undefined;
|
|
11584
12121
|
declare namespace index_d_exports {
|
|
11585
|
-
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, CertPathResult, 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, DeclaredInvoiceTotals, 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, EInvoiceIssue, 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, FacturXAssembleOptions, 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, ValidatableInvoice, 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, assembleFacturX, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, autoTagPage, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertPath, buildCertificateChain, buildCollection, buildColorKeyMask, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFacturXXmp, 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, buildSigningCertificateV2Attribute, 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, detectFacturXProfile, 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, extractSigningCertificateV2, 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, parseCiiXml, 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, validateEn16931, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfUa2, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
|
|
12122
|
+
export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, AutoTagOptions, AutoTagResult, AvarSegmentMap, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BidiDirection, BidiResult, BidiRun, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, CertPathResult, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorFontInfo, ColorGlyphLayer, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CpalPalette, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeclaredInvoiceTotals, 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, EInvoiceIssue, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPayloadOptions, EncryptedPdfError, EncryptionReport, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXAssembleOptions, 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, NamedInstance, 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, PermissionFlags, PluginDocument, PluginError, PluginPage, PostScriptFunction, PreflightIssue, PrepareAppearanceOptions, PresetName, PresetOptions, ProfileXmpOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionLeak, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionRegion, RedactionResult, RedactionVerificationReport, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SanitizeClass, SanitizeOptions, SanitizeReport, 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, ThreatFinding, ThreatReport, ThreatSeverity, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidatableInvoice, ValidationFinding, ValidationLevel, VariableFontInfo, VariationAxis, 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, assembleFacturX, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, autoTagPage, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertPath, buildCertificateChain, buildCollection, buildColorKeyMask, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFacturXXmp, 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, buildSigningCertificateV2Attribute, 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, detectFacturXProfile, 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, extractSigningCertificateV2, 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, getColorGlyphLayers, 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, inspectEncryption, 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, normalizeAxisCoordinate, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseCiiXml, parseColorFont, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseVariableFont, 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, reorderVisual, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveBidi, resolveFallback, resolveFieldReference, resolveInstanceCoordinates, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, sanitizePdf, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, scanPdfThreats, 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, validateEn16931, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfUa2, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifyRedactions, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
|
|
11586
12123
|
}
|
|
11587
12124
|
/**
|
|
11588
12125
|
* Options for WASM module initialization.
|
|
@@ -11634,5 +12171,5 @@ interface InitWasmOptions {
|
|
|
11634
12171
|
*/
|
|
11635
12172
|
declare function initWasm(options?: string | URL | InitWasmOptions): Promise<void>;
|
|
11636
12173
|
//#endregion
|
|
11637
|
-
export { attachAssociatedFiles as $, minimalPreset as $a, generateSrgbIccProfile as $c, checkAccessibility as $d, fillAndStroke as $f, setPageLabels as $i, parseExistingTrailer as $l, sampleShadingColor as $n, loadWasmModule as $o, JsonReport as $r, ProgressInfo as $s, getComponentDepths as $t, CaretSymbol as $u, tagHeading as A, HeaderFooterContent as Aa, generatePdfAXmpBytes as Ac, setFieldValue as Ad, setTextRenderingMode as Af, ParsedPage as Ai, FieldLockInfo as Al, renderToPdf as An, Code39Options as Ao, evaluateFunction as Ar, convertTiffCmykToRgb as As, rasterize as At, encodeSequence as Au, buildColorKeyMask as B, OverflowResult as Ba, parseXmpMetadata as Bc, rc4 as Bd, circlePath as Bf, isValidModuleName as Bi, buildDocMdpReference as Bl, splitByScript as Bn, BarcodeOptions as Bo, reconstructLines as Br, computeTargetDimensions as Bs, StrokeItem as Bt, decodeJpeg2000 as Bu, PdfUa2Result as C, MissingOnValueCheckError as Ca, validatePdfX as Cc, formatDate$1 as Cd, moveTextSetLeading as Cf, tableToJson as Ci, hasLtvData as Cl, RecordMetadata as Cn, ean13ToOperators as Co, identityTransferFunction as Cr, webpToPng as Cs, generateThumbnail as Ct, buildPkcs7Signature as Cu, ListNumbering as D, RichTextFieldReadError as Da, enforcePdfAFull as Dc, createSandbox as Dd, setFontSize as Df, metadataPlugin as Di, DiffEntry as Dl, RenderOptions$1 as Dn, ItfOptions as Do, PostScriptFunction as Dr, getSupportedFormats as Ds, renderPageToCanvas as Dt, encodeOID as Du, LIST_NUMBERING_KEY as E, RemovePageFromEmptyDocumentError as Ea, EnforcementAction as Ec, formatNumber as Ed, setFont as Ef, MetadataPluginOptions as Ei, getCounterSignatures as El, gtsPdfVtVersion as En, encodeEan8 as Eo, PdfFunctionDef as Er, getImageFormatName as Es, renderDisplayListToCanvas as Et, encodeLength as Eu, tagTable as F, formatDate as Fa, stripProhibitedFeatures as Fc, sha256 as Fd, showTextHex as Ff, PdfDocumentBuilder as Fi, ModificationReport as Fl, createRangeFetcher as Fn, code128ToOperators as Fo, CollectionView as Fr, injectJpegMetadata as Fs, DisplayItem as Ft, PrepareAppearanceOptions as Fu, buildSoftMaskNone as G, truncateText as Ga, isValidLevel as Gc, verifyUserPassword as Gd, closeFillEvenOddAndStroke as Gf, BatchResult as Gi, validateSignatureChain as Gl, PdfA4ExtensionProperty as Gn, RuntimeKind as Go, CalGrayParams as Gr, parseIccDescription as Gs, buildCertPath as Gt, generateInkAppearance as Gu, buildStencilMask as H, ellipsisText as Ha, PdfAProfile as Hc, EncryptDictValues as Hd, clipEvenOdd as Hf, BatchErrorStrategy as Hi, setCertificationLevel as Hl, XRechnungOptions as Hn, base64Encode as Ho, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as Hr, embedIccProfile as Hs, TextItem as Ht, generateCircleAppearance as Hu, tagTableDataCell as I, replaceTemplateVariables as Ia, ParsedXmpMetadata as Ic, sha384 as Id, showTextNextLine as If, WasmModuleName as Ii, ModificationViolation as Il, FallbackFont as In, encodeCode128 as Io, buildCollection as Ir, JpegMarkerInfo as Is, DisplayList as It, computeSignatureHash as Iu, buildEncryptedPayload as J, PresetOptions as Ja, generateZapfDingbatsToUnicodeCmap as Jc, PdfUaLevel as Jd, curveToFinal as Jf, processBatch as Ji, IncrementalSaveOptions as Jl, PdfA4Options as Jn, configureWasmLoader as Jo, buildCalGray as Jr, DeduplicationReport as Js, findHyphenationPoints as Jt, generateSquigglyAppearance as Ju, EncryptedPayloadOptions as K, wrapText as Ka, generateSymbolToUnicodeCmap as Kc, PdfUaEnforcementResult as Kd, closePath as Kf, batchFlatten as Ki, AppendOptions as Kl, PdfA4ExtensionSchema as Kn, WasmLoaderConfig as Ko, CalRGBParams as Kr, convertToGrayscale as Ks, buildSigningCertificateV2Attribute as Kt, generateLineAppearance as Ku, tagTableHeaderCell as L, toAlpha as La, XmpIssue as Lc, sha512 as Ld, showTextWithSpacing as Lf, getInlineWasmBytes as Li, ModificationViolationType as Ll, FallbackRun as Ln, encodeCode128Values as Lo, Line as Lr, analyzeJpegMarkers as Ls, FillItem as Lt, embedSignature as Lu, tagList as M, HeaderFooterPosition as Ma, StripResult as Mc, setFieldVisibility as Md, setWordSpacing as Mf, StreamingParserEvent as Mi, addFieldLock as Ml, FetchLikeResponse as Mn, computeCode39CheckDigit as Mo, markdownToPdf as Mr, isCmykTiff as Ms, InterpretOptions as Mt, encodeUTCTime as Mu, tagListItem as N, applyHeaderFooter as Na, StrippedFeature as Nc, AFSpecial_Format as Nd, showText as Nf, StreamingParserOptions as Ni, buildFieldLockDict as Nl, RangeFetchOptions as Nn, encodeCode39 as No, CollectionOptions as Nr, JpegMetadata as Ns, interpretContentStream as Nt, encodeUtf8String as Nu, TaggedListItem as O, StreamingParseError as Oa, PdfAXmpOptions as Oc, getFieldValue as Od, setLeading as Of, TimestampPluginOptions as Oi, DocumentDiff as Ol, VNode as On, encodeItf as Oo, SampledFunction as Or, TiffCmykEmbedResult as Os, RasterImage as Ot, encodeOctetString as Ou, tagParagraph as P, applyHeaderFooterToPage as Pa, countOccurrences as Pc, validateFieldValue as Pd, showTextArray as Pf, StreamingPdfParser as Pi, getFieldLocks as Pl, RangeFetcher as Pn, Code128Options as Po, CollectionSchemaField as Pr, extractJpegMetadata as Ps, interpretPage as Pt, ByteRangeResult as Pu, buildPageOutputIntent as Q, borderedPreset as Qa, SRGB_ICC_PROFILE as Qc, validatePdfUa as Qd, fill as Qf, removePageLabels as Qi, findExistingSignatures as Ql, buildFunctionShading as Qn, isWasmModuleCached as Qo, DEFAULT_SARIF_TOOL_NAME as Qr, OptimizationReport as Qs, downscale16To8 as Qt, PdfFileAttachmentAnnotation as Qu, tagTableRow as R, toRoman as Ra, XmpValidationResult as Rc, aesDecryptCBC as Rd, buildDeviceNColorSpace as Rf, getInlineWasmSize as Ri, detectModifications as Rl, ScriptRun as Rn, valuesToModules as Ro, Paragraph as Rr, ImageDpi as Rs, ImageItem as Rt, findSignatures as Ru, PdfUa2Issue as S, InvalidPageSizeError as Sa, enforcePdfX as Sc, AFDate_FormatEx as Sd, moveText as Sf, tableToCsv as Si, embedLtvData as Sl, PdfVtConformance as Sn, calculateEanCheckDigit as So, buildType5Halftone as Sr, webpToJpeg as Ss, ThumbnailOptions as St, SignerInfo as Su, validatePdfUa2 as T, PluginError as Ta, EnforcePdfAResult as Tc, AFNumber_Format as Td, setCharacterSpacing as Tf, accessibilityPlugin as Ti, addCounterSignature as Tl, buildVtDpm as Tn, encodeEan13 as To, ExponentialFunction as Tr, detectImageFormat as Ts, CanvasRenderOptions as Tt, encodeInteger as Tu, SoftMaskGroupOptions as U, estimateTextWidth as Ua, getProfile as Uc, computeFileEncryptionKey as Ud, closeAndStroke as Uf, BatchOptions as Ui, SignatureChainEntry as Ul, generateOrderX as Un, PdfWorker as Uo, DocTimeStampOptions as Ur, extractIccProfile as Us, Matrix as Ut, generateFreeTextAppearance as Uu, buildImageSoftMask as V, applyOverflow as Va, validateXmpMetadata as Vc, md5 as Vd, clip as Vf, preloadInlineWasm as Vi, getCertificationLevel as Vl, OrderXType as Vn, base64Decode as Vo, reconstructParagraphs as Vr, IccProfile as Vs, SubPath as Vt, searchTextItems as Vu, buildSoftMaskGroupExtGState as W, shrinkFontSize as Wa, getSupportedLevels as Wc, verifyOwnerPassword as Wd, closeFillAndStroke as Wf, BatchProgressCallback as Wi, SignatureChainResult as Wl, generateXRechnungCii as Wn, PdfWorkerOptions as Wo, buildDocTimeStampDict as Wr, parseIccColorSpace as Ws, CertPathResult as Wt, generateHighlightAppearance as Wu, PageOutputIntentOptions as X, applyPreset as Xa, OutputIntentOptions as Xc, PdfUaWarning as Xd, ellipsePath as Xf, PageLabelStyle as Xi, TrailerInfo as Xl, pdfA4Rules as Xn, instantiateWasmModuleStreaming as Xo, buildLab as Xr, BatchOptimizeOptions as Xs, layoutParagraph as Xt, generateUnderlineAppearance as Xu, buildUnencryptedWrapper as Y, TablePreset as Ya, getToUnicodeCmap as Yc, PdfUaValidationResult as Yd, curveToInitial as Yf, PageLabelRange as Yi, SignatureByteRange as Yl, buildPdfA4Xmp as Yn, detectRuntime as Yo, buildCalRGB as Yr, deduplicateImages as Ys, layoutColumns as Yt, generateStrikeOutAppearance as Yu, attachOutputIntents as Z, applyTablePreset as Za, buildOutputIntent as Zc, enforcePdfUa as Zd, endPath as Zf, getPageLabels as Zi, appendIncrementalUpdate as Zl, FunctionShadingOptions as Zn, isWasmDisabled as Zo, labToRgb as Zr, ImageOptimizeEntry as Zs, layoutTextFlow as Zt, FileAttachmentIcon as Zu, convertPdfAConformanceXmp as _, FieldExistsAsNonTerminalError as _a, OverlayAlignment as _c, PdfFreeTextAnnotation as _d, drawImageWithMatrix as _f, DocumentPart as _i, findChangedObjects as _l, signDeferred as _n, dataMatrixToOperators as _o, saveIncremental as _p, STANDARD_SPOT_FUNCTIONS as _r, DirectEmbedResult as _s, ExtractedFont as _t, TimestampResult as _u, parseCiiXml as a, removeAllBookmarks as aa, RecompressOptions as ac, StandardStampName as ad, PdfStreamWriter as af, ValidationLevel as ai, PdfALevel as al, decodeTile as an, readCode39 as ao, setDashPattern as ap, Invoice as ar, TiffImage as as, renderPageTile as at, validateExtendedKeyUsage as au, AutoTagResult as b, InvalidColorError as ba, applyRedaction as bc, PdfTextAnnotation as bd, beginText as bf, TableExtractOptions as bi, LtvOptions as bl, WorkerPoolOptions as bn, encodeUpcA as bo, buildThresholdHalftone as br, encodePngFromPixels as bs, ExtractedImage as bt, requestTimestamp as bu, ValidatableInvoice as c, FlattenOptions as ca, optimizeImage as cc, PdfLineAnnotation as cd, beginArtifact as cf, MATHML_NAMESPACE as ci, validatePdfA as cl, WoffInfo as cn, StyledBarcodeOptions as co, setLineJoin as cp, generateCiiXml as cr, decodeTiffPage as cs, redactRegions as ct, extractEmbeddedRevocationData as cu, assembleFacturX as d, flattenForm as da, JpegDecodeResult as dc, PdfSquareAnnotation as dd, beginMarkedContentSequence as df, buildNamespace as di, delinearizePdf as dl, isWoff2 as dn, Pdf417Matrix as do, stroke as dp, PdfX6Options as dr, parseTiffIfd as ds, OcrWord as dt, validateCertificateChain as du, AddBookmarkOptions as ea, optimizeAllImages as ec, PdfCaretAnnotation as ed, isAccessible as ef, SARIF_SCHEMA_URI as ei, TransparencyFinding as el, normalizeComponentDepth as en, professionalPreset as eo, fillEvenOdd as ep, CodeFrameOptions as er, loadWasmModuleStreaming as es, registerEmbeddedFile as et, saveIncrementalWithSignaturePreservation as eu, buildFacturXXmp as f, BatchProcessingError as fa, JpegWasmModule as fc, PdfHighlightAnnotation as fd, beginMarkedContentWithProperties as ff, buildNamespacesArray as fi, getLinearizationInfo as fl, readWoffHeader as fn, Pdf417Options as fo, isOpenTypeCFF as fp, PdfX6Variant as fr, WebPImage as fs, applyOcr as ft, downloadCrl as fu, PreflightIssue as g, FieldAlreadyExistsError as ga, isJpegWasmReady as gc, FreeTextAlignment as gd, wrapInMarkedContent as gf, buildRequirements as gi, computeObjectHash as gl, SignatureAlgorithm as gn, DataMatrixResult as go, saveDocumentIncremental as gp, validateBoxGeometry as gr, DirectEmbedOptions as gs, comparePages as gt, extractOcspUrl as gu, buildWtpdfIdentificationXmp as h, ExceededMaxLengthError as ha, initJpegWasm as hc, PdfUnderlineAnnotation as hd, endMarkedContent as hf, buildRequirement as hi, IncrementalChange as hl, ExternalSigner as hn, DataMatrixOptions as ho, IncrementalSaveResult as hp, buildPdfX6OutputIntent as hr, isWebPLossless as hs, compareImages as ht, checkCertificateStatus as hu, detectFacturXProfile as i, getBookmarks as ia, RawImageData as ic, PdfStampAnnotation as id, parseXmpMetadata$1 as if, ValidationFinding as ii, PdfAIssue as il, assembleTiles as in, readCode128 as io, rectangle as ip, FacturXProfile as ir, TiffDecodeOptions as is, computeTileGrid as it, validateCertificatePolicy as iu, tagLink as j, HeaderFooterOptions as ja, StripOptions as jc, addVisibilityAction as jd, setTextRise as jf, StreamingParseResult as ji, FieldLockOptions as jl, FetchLike as jn, code39ToOperators as jo, MarkdownToPdfOptions as jr, embedTiffCmyk as js, renderPageToImage as jt, encodeSet as ju, tagFigure as k, UnexpectedFieldTypeError as ka, generatePdfAXmp as kc, resolveFieldReference as kd, setTextMatrix as kf, timestampPlugin as ki, diffSignedContent as kl, h as kn, itfToOperators as ko, StitchingFunction as kr, TiffIfdEntry as ks, RenderOptions as kt, encodePrintableString as ku, validateEn16931 as l, flattenField as la, recompressImage as lc, PdfPolyLineAnnotation as ld, beginArtifactWithType as lf, NamespaceDef as li, LinearizationInfo as ll, decodeWoff as ln, calculateBarcodeDimensions as lo, setLineWidth as lp, BoxGeometry as lr, getTiffPageCount as ls, ApplyOcrOptions as lt, verifyOfflineRevocation as lu, buildPdfRIdentificationXmp as m, EncryptedPdfError as ma, encodeJpegWasm as mc, PdfStrikeOutAnnotation as md, endArtifact as mf, RequirementType as mi, linearizePdf as ml, DeferredSignResult as mn, pdf417ToOperators as mo, ChangeTracker as mp, buildGtsPdfxVersion as mr, isWebP as ms, DiffResult as mt, isCertificateRevoked as mu, index_d_exports as n, BookmarkRef as na, ImageOptimizeOptions as nc, PdfRedactAnnotation as nd, buildXmpMetadata as nf, SarifResult as ni, detectTransparency as nl, summarizeBitDepth as nn, BarcodeReadResult as no, lineTo as np, levenshtein as nr, resetWasmLoader as ns, TileGrid as nt, verifySignatureDetailed as nu, DeclaredInvoiceTotals as o, removeBookmark as oa, downscaleImage as oc, LineEndingStyle as od, PDFOperator as of, toJsonReport as oi, PdfAValidationResult as ol, decodeTileRegion as on, readEan13 as oo, setFlatness as op, InvoiceLine as or, decodeTiff as os, RedactRect as ot, validateKeyUsage as ou, ProfileXmpOptions as p, CombedTextLayoutError as pa, decodeJpegWasm as pc, PdfSquigglyAnnotation as pd, createMarkedContentScope as pf, buildPieceInfo as pi, isLinearized as pl, DeferredSignOptions as pn, encodePdf417 as po, isTrueType as pp, buildBoxDict as pr, decodeWebP as ps, CompareOptions as pt, extractCrlUrls as pu, WrapperPayloadOptions as q, PresetName as qa, generateWinAnsiToUnicodeCmap as qc, PdfUaError as qd, curveTo as qf, batchMerge as qi, IncrementalObject as ql, PdfA4Level as qn, clearWasmCache as qo, LabParams as qr, isGrayscaleImage as qs, extractSigningCertificateV2 as qt, generateSquareAppearance as qu, initWasm as r, addBookmark as ra, OptimizeResult as rc, PdfInkAnnotation as rd, createXmpStream as rf, SarifRun as ri, flattenTransparency as rl, upscale8To16 as rn, readBarcode as ro, moveTo as rp, renderCodeFrame as rr, IfdEntry as rs, TileOptions as rt, EKU_OIDS as ru, EInvoiceIssue as s, FlattenFormResult as sa, estimateJpegQuality as sc, PdfCircleAnnotation as sd, MarkedContentScope as sf, toSarif as si, enforcePdfA as sl, parseTileInfo as sn, readEan8 as so, setLineCap as sp, InvoiceParty as sr, decodeTiffAll as ss, RedactResult as st, TrustStore as su, InitWasmOptions as t, BookmarkNode as ta, DownscaleOptions as tc, PdfPopupAnnotation as td, summarizeIssues as tf, SarifLog as ti, TransparencyInfo as tl, offsetSignedToUnsigned as tn, stripedPreset as to, fillEvenOddAndStroke as tp, didYouMean as tr, provideWasmBytes as ts, RenderCache as tt, validateByteRangeIntegrity as tu, FacturXAssembleOptions as u, flattenFields as ua, ChromaSubsampling as uc, PdfPolygonAnnotation as ud, beginMarkedContent as uf, PDF2_NAMESPACE as ui, LinearizationOptions as ul, isWoff as un, renderStyledBarcode as uo, setMiterLimit as up, PdfRect as ur, isTiff as us, OcrEngine as ut, buildCertificateChain as uu, preflightPdfA as v, FontNotEmbeddedError as va, RedactionOperatorOptions as vc, LinkHighlightMode as vd, drawImageXObject as vf, buildDPartRoot as vi, optimizeIncrementalSave as vl, TaskRunner as vn, encodeDataMatrix as vo, Type1Halftone as vr, canDirectEmbed as vs, FontFileFormat as vt, buildTimestampRequest as vu, buildPdfUa2Xmp as w, NoSuchFieldError as wa, EnforcePdfAOptions as wc, parseAcrobatDate as wd, nextLine as wf, AccessibilityPluginOptions as wi, CounterSignatureInfo as wl, buildPdfVtDParts as wn, ean8ToOperators as wo, nameHalftone as wr, ImageFormat as ws, Canvas2DLike as wt, encodeContextTag as wu, autoTagPage as x, InvalidFieldNamePartError as xa, buildPdfXOutputIntent as xc, TextAnnotationIcon as xd, endText as xf, extractTables as xi, buildDssDictionary as xl, createWorkerPool as xn, upcAToOperators as xo, buildType1Halftone as xr, recompressWebP as xs, extractImages as xt, SignatureOptions as xu, AutoTagOptions as y, ForeignPageError as ya, RedactionResult as yc, PdfLinkAnnotation as yd, drawXObject as yf, ExtractedTable as yi, DssData as yl, WorkerPool as yn, calculateUpcCheckDigit as yo, buildSampledTransferFunction as yr, embedTiffDirect as ys, extractFonts as yt, parseTimestampResponse as yu, buildBlackPointCompensationExtGState as z, OverflowMode as za, extractXmpMetadata as zc, aesEncryptCBC as zd, buildSeparationColorSpace as zf, hasInlineWasmData as zi, MdpPermission as zl, resolveFallback as zn, BarcodeMatrix as zo, ReconstructOptions as zr, computeImageDpi as zs, Rgba as zt, prepareForSigning as zu };
|
|
11638
|
-
//# sourceMappingURL=index-
|
|
12174
|
+
export { attachAssociatedFiles as $, InvalidFieldNamePartError as $a, buildPdfXOutputIntent as $c, TextAnnotationIcon as $d, endText as $f, extractTables as $i, buildDssDictionary as $l, createWorkerPool as $n, upcAToOperators as $o, buildType1Halftone as $r, recompressWebP as $s, normalizeAxisCoordinate as $t, SignatureOptions as $u, tagHeading as A, removePageLabels as Aa, OptimizationReport as Ac, PdfFileAttachmentAnnotation as Ad, validatePdfUa as Af, DEFAULT_SARIF_TOOL_NAME as Ai, SRGB_ICC_PROFILE as Al, downscale16To8 as An, borderedPreset as Ao, fill as Ap, buildFunctionShading as Ar, isWasmModuleCached as As, rasterize as At, findExistingSignatures as Au, buildColorKeyMask as B, FlattenOptions as Ba, optimizeImage as Bc, PdfLineAnnotation as Bd, beginArtifact as Bf, MATHML_NAMESPACE as Bi, validatePdfA as Bl, WoffInfo as Bn, StyledBarcodeOptions as Bo, setLineJoin as Bp, generateCiiXml as Br, decodeTiffPage as Bs, StrokeItem as Bt, extractEmbeddedRevocationData as Bu, PdfUa2Result as C, BatchResult as Ca, parseIccDescription as Cc, generateInkAppearance as Cd, verifyUserPassword as Cf, CalGrayParams as Ci, isValidLevel as Cl, buildCertPath as Cn, truncateText as Co, closeFillEvenOddAndStroke as Cp, PdfA4ExtensionProperty as Cr, RuntimeKind as Cs, generateThumbnail as Ct, validateSignatureChain as Cu, ListNumbering as D, PageLabelRange as Da, deduplicateImages as Dc, generateStrikeOutAppearance as Dd, PdfUaValidationResult as Df, buildCalRGB as Di, getToUnicodeCmap as Dl, layoutColumns as Dn, TablePreset as Do, curveToInitial as Dp, buildPdfA4Xmp as Dr, detectRuntime as Ds, renderPageToCanvas as Dt, SignatureByteRange as Du, LIST_NUMBERING_KEY as E, processBatch as Ea, DeduplicationReport as Ec, generateSquigglyAppearance as Ed, PdfUaLevel as Ef, buildCalGray as Ei, generateZapfDingbatsToUnicodeCmap as El, findHyphenationPoints as En, PresetOptions as Eo, curveToFinal as Ep, PdfA4Options as Er, configureWasmLoader as Es, renderDisplayListToCanvas as Et, IncrementalSaveOptions as Eu, tagTable as F, addBookmark as Fa, OptimizeResult as Fc, PdfInkAnnotation as Fd, createXmpStream as Ff, SarifRun as Fi, flattenTransparency as Fl, upscale8To16 as Fn, readBarcode as Fo, moveTo as Fp, renderCodeFrame as Fr, IfdEntry as Fs, DisplayItem as Ft, EKU_OIDS as Fu, buildSoftMaskNone as G, CombedTextLayoutError as Ga, decodeJpegWasm as Gc, PdfSquigglyAnnotation as Gd, createMarkedContentScope as Gf, buildPieceInfo as Gi, isLinearized as Gl, DeferredSignOptions as Gn, encodePdf417 as Go, isTrueType as Gp, buildBoxDict as Gr, decodeWebP as Gs, ColorGlyphLayer as Gt, extractCrlUrls as Gu, buildStencilMask as H, flattenFields as Ha, ChromaSubsampling as Hc, PdfPolygonAnnotation as Hd, beginMarkedContent as Hf, PDF2_NAMESPACE as Hi, LinearizationOptions as Hl, isWoff as Hn, renderStyledBarcode as Ho, setMiterLimit as Hp, PdfRect as Hr, isTiff as Hs, TextItem as Ht, buildCertificateChain as Hu, tagTableDataCell as I, getBookmarks as Ia, RawImageData as Ic, PdfStampAnnotation as Id, parseXmpMetadata$1 as If, ValidationFinding as Ii, PdfAIssue as Il, assembleTiles as In, readCode128 as Io, rectangle as Ip, FacturXProfile as Ir, TiffDecodeOptions as Is, DisplayList as It, validateCertificatePolicy as Iu, buildEncryptedPayload as J, FieldAlreadyExistsError as Ja, isJpegWasmReady as Jc, FreeTextAlignment as Jd, wrapInMarkedContent as Jf, buildRequirements as Ji, computeObjectHash as Jl, SignatureAlgorithm as Jn, DataMatrixResult as Jo, saveDocumentIncremental as Jp, validateBoxGeometry as Jr, DirectEmbedOptions as Js, parseColorFont as Jt, extractOcspUrl as Ju, EncryptedPayloadOptions as K, EncryptedPdfError as Ka, encodeJpegWasm as Kc, PdfStrikeOutAnnotation as Kd, endArtifact as Kf, RequirementType as Ki, linearizePdf as Kl, DeferredSignResult as Kn, pdf417ToOperators as Ko, ChangeTracker as Kp, buildGtsPdfxVersion as Kr, isWebP as Ks, CpalPalette as Kt, isCertificateRevoked as Ku, tagTableHeaderCell as L, removeAllBookmarks as La, RecompressOptions as Lc, StandardStampName as Ld, PdfStreamWriter as Lf, ValidationLevel as Li, PdfALevel as Ll, decodeTile as Ln, readCode39 as Lo, setDashPattern as Lp, Invoice as Lr, TiffImage as Ls, FillItem as Lt, validateExtendedKeyUsage as Lu, tagList as M, AddBookmarkOptions as Ma, optimizeAllImages as Mc, PdfCaretAnnotation as Md, isAccessible as Mf, SARIF_SCHEMA_URI as Mi, TransparencyFinding as Ml, normalizeComponentDepth as Mn, professionalPreset as Mo, fillEvenOdd as Mp, CodeFrameOptions as Mr, loadWasmModuleStreaming as Ms, InterpretOptions as Mt, saveIncrementalWithSignaturePreservation as Mu, tagListItem as N, BookmarkNode as Na, DownscaleOptions as Nc, PdfPopupAnnotation as Nd, summarizeIssues as Nf, SarifLog as Ni, TransparencyInfo as Nl, offsetSignedToUnsigned as Nn, stripedPreset as No, fillEvenOddAndStroke as Np, didYouMean as Nr, provideWasmBytes as Ns, interpretContentStream as Nt, validateByteRangeIntegrity as Nu, TaggedListItem as O, PageLabelStyle as Oa, BatchOptimizeOptions as Oc, generateUnderlineAppearance as Od, PdfUaWarning as Of, buildLab as Oi, OutputIntentOptions as Ol, layoutParagraph as On, applyPreset as Oo, ellipsePath as Op, pdfA4Rules as Or, instantiateWasmModuleStreaming as Os, RasterImage as Ot, TrailerInfo as Ou, tagParagraph as P, BookmarkRef as Pa, ImageOptimizeOptions as Pc, PdfRedactAnnotation as Pd, buildXmpMetadata as Pf, SarifResult as Pi, detectTransparency as Pl, summarizeBitDepth as Pn, BarcodeReadResult as Po, lineTo as Pp, levenshtein as Pr, resetWasmLoader as Ps, interpretPage as Pt, verifySignatureDetailed as Pu, buildPageOutputIntent as Q, InvalidColorError as Qa, applyRedaction as Qc, PdfTextAnnotation as Qd, beginText as Qf, TableExtractOptions as Qi, LtvOptions as Ql, WorkerPoolOptions as Qn, encodeUpcA as Qo, buildThresholdHalftone as Qr, encodePngFromPixels as Qs, VariationAxis as Qt, requestTimestamp as Qu, tagTableRow as R, removeBookmark as Ra, downscaleImage as Rc, LineEndingStyle as Rd, PDFOperator as Rf, toJsonReport as Ri, PdfAValidationResult as Rl, decodeTileRegion as Rn, readEan13 as Ro, setFlatness as Rp, InvoiceLine as Rr, decodeTiff as Rs, ImageItem as Rt, validateKeyUsage as Ru, PdfUa2Issue as S, BatchProgressCallback as Sa, parseIccColorSpace as Sc, generateHighlightAppearance as Sd, verifyOwnerPassword as Sf, buildDocTimeStampDict as Si, getSupportedLevels as Sl, CertPathResult as Sn, shrinkFontSize as So, closeFillAndStroke as Sp, generateXRechnungCii as Sr, PdfWorkerOptions as Ss, ThumbnailOptions as St, SignatureChainResult as Su, validatePdfUa2 as T, batchMerge as Ta, isGrayscaleImage as Tc, generateSquareAppearance as Td, PdfUaError as Tf, LabParams as Ti, generateWinAnsiToUnicodeCmap as Tl, extractSigningCertificateV2 as Tn, PresetName as To, curveTo as Tp, PdfA4Level as Tr, clearWasmCache as Ts, CanvasRenderOptions as Tt, IncrementalObject as Tu, SoftMaskGroupOptions as U, flattenForm as Ua, JpegDecodeResult as Uc, PdfSquareAnnotation as Ud, beginMarkedContentSequence as Uf, buildNamespace as Ui, delinearizePdf as Ul, isWoff2 as Un, Pdf417Matrix as Uo, stroke as Up, PdfX6Options as Ur, parseTiffIfd as Us, Matrix as Ut, validateCertificateChain as Uu, buildImageSoftMask as V, flattenField as Va, recompressImage as Vc, PdfPolyLineAnnotation as Vd, beginArtifactWithType as Vf, NamespaceDef as Vi, LinearizationInfo as Vl, decodeWoff as Vn, calculateBarcodeDimensions as Vo, setLineWidth as Vp, BoxGeometry as Vr, getTiffPageCount as Vs, SubPath as Vt, verifyOfflineRevocation as Vu, buildSoftMaskGroupExtGState as W, BatchProcessingError as Wa, JpegWasmModule as Wc, PdfHighlightAnnotation as Wd, beginMarkedContentWithProperties as Wf, buildNamespacesArray as Wi, getLinearizationInfo as Wl, readWoffHeader as Wn, Pdf417Options as Wo, isOpenTypeCFF as Wp, PdfX6Variant as Wr, WebPImage as Ws, ColorFontInfo as Wt, downloadCrl as Wu, PageOutputIntentOptions as X, FontNotEmbeddedError as Xa, RedactionOperatorOptions as Xc, LinkHighlightMode as Xd, drawImageXObject as Xf, buildDPartRoot as Xi, optimizeIncrementalSave as Xl, TaskRunner as Xn, encodeDataMatrix as Xo, Type1Halftone as Xr, canDirectEmbed as Xs, NamedInstance as Xt, buildTimestampRequest as Xu, buildUnencryptedWrapper as Y, FieldExistsAsNonTerminalError as Ya, OverlayAlignment as Yc, PdfFreeTextAnnotation as Yd, drawImageWithMatrix as Yf, DocumentPart as Yi, findChangedObjects as Yl, signDeferred as Yn, dataMatrixToOperators as Yo, saveIncremental as Yp, STANDARD_SPOT_FUNCTIONS as Yr, DirectEmbedResult as Ys, AvarSegmentMap as Yt, TimestampResult as Yu, attachOutputIntents as Z, ForeignPageError as Za, RedactionResult as Zc, PdfLinkAnnotation as Zd, drawXObject as Zf, ExtractedTable as Zi, DssData as Zl, WorkerPool as Zn, calculateUpcCheckDigit as Zo, buildSampledTransferFunction as Zr, embedTiffDirect as Zs, VariableFontInfo as Zt, parseTimestampResponse as Zu, convertPdfAConformanceXmp as _, hasInlineWasmData as _a, computeImageDpi as _c, prepareForSigning as _d, aesEncryptCBC as _f, ReconstructOptions as _i, extractXmpMetadata as _l, sanitizePdf as _n, OverflowMode as _o, buildSeparationColorSpace as _p, resolveFallback as _r, BarcodeMatrix as _s, ExtractedFont as _t, MdpPermission as _u, parseCiiXml as a, metadataPlugin as aa, getSupportedFormats as ac, encodeOID as ad, createSandbox as af, PostScriptFunction as ai, enforcePdfAFull as al, reorderVisual as an, RichTextFieldReadError as ao, setFontSize as ap, RenderOptions$1 as ar, ItfOptions as as, renderPageTile as at, DiffEntry as au, AutoTagResult as b, BatchErrorStrategy as ba, embedIccProfile as bc, generateCircleAppearance as bd, EncryptDictValues as bf, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as bi, PdfAProfile as bl, ThreatSeverity as bn, ellipsisText as bo, clipEvenOdd as bp, XRechnungOptions as br, base64Encode as bs, ExtractedImage as bt, setCertificationLevel as bu, ValidatableInvoice as c, ParsedPage as ca, convertTiffCmykToRgb as cc, encodeSequence as cd, setFieldValue as cf, evaluateFunction as ci, generatePdfAXmpBytes as cl, PermissionFlags as cn, HeaderFooterContent as co, setTextRenderingMode as cp, renderToPdf as cr, Code39Options as cs, redactRegions as ct, FieldLockInfo as cu, assembleFacturX as d, StreamingParserOptions as da, JpegMetadata as dc, encodeUtf8String as dd, AFSpecial_Format as df, CollectionOptions as di, StrippedFeature as dl, RedactionRegion as dn, applyHeaderFooter as do, showText as dp, RangeFetchOptions as dr, encodeCode39 as ds, OcrWord as dt, buildFieldLockDict as du, tableToCsv as ea, webpToJpeg as ec, SignerInfo as ed, AFDate_FormatEx as ef, buildType5Halftone as ei, enforcePdfX as el, parseVariableFont as en, InvalidPageSizeError as eo, moveText as ep, PdfVtConformance as er, calculateEanCheckDigit as es, registerEmbeddedFile as et, embedLtvData as eu, buildFacturXXmp as f, StreamingPdfParser as fa, extractJpegMetadata as fc, ByteRangeResult as fd, validateFieldValue as ff, CollectionSchemaField as fi, countOccurrences as fl, RedactionVerificationReport as fn, applyHeaderFooterToPage as fo, showTextArray as fp, RangeFetcher as fr, Code128Options as fs, applyOcr as ft, getFieldLocks as fu, PreflightIssue as g, getInlineWasmSize as ga, ImageDpi as gc, findSignatures as gd, aesDecryptCBC as gf, Paragraph as gi, XmpValidationResult as gl, SanitizeReport as gn, toRoman as go, buildDeviceNColorSpace as gp, ScriptRun as gr, valuesToModules as gs, comparePages as gt, detectModifications as gu, buildWtpdfIdentificationXmp as h, getInlineWasmBytes as ha, analyzeJpegMarkers as hc, embedSignature as hd, sha512 as hf, Line as hi, XmpIssue as hl, SanitizeOptions as hn, toAlpha as ho, showTextWithSpacing as hp, FallbackRun as hr, encodeCode128Values as hs, compareImages as ht, ModificationViolationType as hu, detectFacturXProfile as i, MetadataPluginOptions as ia, getImageFormatName as ic, encodeLength as id, formatNumber as if, PdfFunctionDef as ii, EnforcementAction as il, BidiRun as in, RemovePageFromEmptyDocumentError as io, setFont as ip, gtsPdfVtVersion as ir, encodeEan8 as is, computeTileGrid as it, getCounterSignatures as iu, tagLink as j, setPageLabels as ja, ProgressInfo as jc, CaretSymbol as jd, checkAccessibility as jf, JsonReport as ji, generateSrgbIccProfile as jl, getComponentDepths as jn, minimalPreset as jo, fillAndStroke as jp, sampleShadingColor as jr, loadWasmModule as js, renderPageToImage as jt, parseExistingTrailer as ju, tagFigure as k, getPageLabels as ka, ImageOptimizeEntry as kc, FileAttachmentIcon as kd, enforcePdfUa as kf, labToRgb as ki, buildOutputIntent as kl, layoutTextFlow as kn, applyTablePreset as ko, endPath as kp, FunctionShadingOptions as kr, isWasmDisabled as ks, RenderOptions as kt, appendIncrementalUpdate as ku, validateEn16931 as l, StreamingParseResult as la, embedTiffCmyk as lc, encodeSet as ld, addVisibilityAction as lf, MarkdownToPdfOptions as li, StripOptions as ll, inspectEncryption as ln, HeaderFooterOptions as lo, setTextRise as lp, FetchLike as lr, code39ToOperators as ls, ApplyOcrOptions as lt, FieldLockOptions as lu, buildPdfRIdentificationXmp as m, WasmModuleName as ma, JpegMarkerInfo as mc, computeSignatureHash as md, sha384 as mf, buildCollection as mi, ParsedXmpMetadata as ml, SanitizeClass as mn, replaceTemplateVariables as mo, showTextNextLine as mp, FallbackFont as mr, encodeCode128 as ms, DiffResult as mt, ModificationViolation as mu, index_d_exports as n, AccessibilityPluginOptions as na, ImageFormat as nc, encodeContextTag as nd, parseAcrobatDate as nf, nameHalftone as ni, EnforcePdfAOptions as nl, BidiDirection as nn, NoSuchFieldError as no, nextLine as np, buildPdfVtDParts as nr, ean8ToOperators as ns, TileGrid as nt, CounterSignatureInfo as nu, DeclaredInvoiceTotals as o, TimestampPluginOptions as oa, TiffCmykEmbedResult as oc, encodeOctetString as od, getFieldValue as of, SampledFunction as oi, PdfAXmpOptions as ol, resolveBidi as on, StreamingParseError as oo, setLeading as op, VNode as or, encodeItf as os, RedactRect as ot, DocumentDiff as ou, ProfileXmpOptions as p, PdfDocumentBuilder as pa, injectJpegMetadata as pc, PrepareAppearanceOptions as pd, sha256 as pf, CollectionView as pi, stripProhibitedFeatures as pl, verifyRedactions as pn, formatDate as po, showTextHex as pp, createRangeFetcher as pr, code128ToOperators as ps, CompareOptions as pt, ModificationReport as pu, WrapperPayloadOptions as q, ExceededMaxLengthError as qa, initJpegWasm as qc, PdfUnderlineAnnotation as qd, endMarkedContent as qf, buildRequirement as qi, IncrementalChange as ql, ExternalSigner as qn, DataMatrixOptions as qo, IncrementalSaveResult as qp, buildPdfX6OutputIntent as qr, isWebPLossless as qs, getColorGlyphLayers as qt, checkCertificateStatus as qu, initWasm as r, accessibilityPlugin as ra, detectImageFormat as rc, encodeInteger as rd, AFNumber_Format as rf, ExponentialFunction as ri, EnforcePdfAResult as rl, BidiResult as rn, PluginError as ro, setCharacterSpacing as rp, buildVtDpm as rr, encodeEan13 as rs, TileOptions as rt, addCounterSignature as ru, EInvoiceIssue as s, timestampPlugin as sa, TiffIfdEntry as sc, encodePrintableString as sd, resolveFieldReference as sf, StitchingFunction as si, generatePdfAXmp as sl, EncryptionReport as sn, UnexpectedFieldTypeError as so, setTextMatrix as sp, h as sr, itfToOperators as ss, RedactResult as st, diffSignedContent as su, InitWasmOptions as t, tableToJson as ta, webpToPng as tc, buildPkcs7Signature as td, formatDate$1 as tf, identityTransferFunction as ti, validatePdfX as tl, resolveInstanceCoordinates as tn, MissingOnValueCheckError as to, moveTextSetLeading as tp, RecordMetadata as tr, ean13ToOperators as ts, RenderCache as tt, hasLtvData as tu, FacturXAssembleOptions as u, StreamingParserEvent as ua, isCmykTiff as uc, encodeUTCTime as ud, setFieldVisibility as uf, markdownToPdf as ui, StripResult as ul, RedactionLeak as un, HeaderFooterPosition as uo, setWordSpacing as up, FetchLikeResponse as ur, computeCode39CheckDigit as us, OcrEngine as ut, addFieldLock as uu, preflightPdfA as v, isValidModuleName as va, computeTargetDimensions as vc, decodeJpeg2000 as vd, rc4 as vf, reconstructLines as vi, parseXmpMetadata as vl, ThreatFinding as vn, OverflowResult as vo, circlePath as vp, splitByScript as vr, BarcodeOptions as vs, FontFileFormat as vt, buildDocMdpReference as vu, buildPdfUa2Xmp as w, batchFlatten as wa, convertToGrayscale as wc, generateLineAppearance as wd, PdfUaEnforcementResult as wf, CalRGBParams as wi, generateSymbolToUnicodeCmap as wl, buildSigningCertificateV2Attribute as wn, wrapText as wo, closePath as wp, PdfA4ExtensionSchema as wr, WasmLoaderConfig as ws, Canvas2DLike as wt, AppendOptions as wu, autoTagPage as x, BatchOptions as xa, extractIccProfile as xc, generateFreeTextAppearance as xd, computeFileEncryptionKey as xf, DocTimeStampOptions as xi, getProfile as xl, scanPdfThreats as xn, estimateTextWidth as xo, closeAndStroke as xp, generateOrderX as xr, PdfWorker as xs, extractImages as xt, SignatureChainEntry as xu, AutoTagOptions as y, preloadInlineWasm as ya, IccProfile as yc, searchTextItems as yd, md5 as yf, reconstructParagraphs as yi, validateXmpMetadata as yl, ThreatReport as yn, applyOverflow as yo, clip as yp, OrderXType as yr, base64Decode as ys, extractFonts as yt, getCertificationLevel as yu, buildBlackPointCompensationExtGState as z, FlattenFormResult as za, estimateJpegQuality as zc, PdfCircleAnnotation as zd, MarkedContentScope as zf, toSarif as zi, enforcePdfA as zl, parseTileInfo as zn, readEan8 as zo, setLineCap as zp, InvoiceParty as zr, decodeTiffAll as zs, Rgba as zt, TrustStore as zu };
|
|
12175
|
+
//# sourceMappingURL=index-06FgCx99.d.cts.map
|