modern-pdf-lib 0.28.1 → 0.29.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.
@@ -2,7 +2,7 @@ import { $ as formatPdfDate, $n as translate, $t as applyRedactions, A as Outlin
2
2
  import { C as PdfRef, E as RegistryEntry, S as PdfObjectRegistry, T as PdfString, _ as PdfDict, a as PdfListboxField, b as PdfNumber, c as PdfCheckboxField, d as FieldType, f as PdfField, g as PdfBool, h as PdfArray, i as PdfButtonField, l as PdfTextField, m as ByteWriter, n as RefResolver, o as PdfDropdownField, p as WidgetAnnotationHost, r as PdfSignatureField, s as PdfRadioGroup, t as PdfForm, u as FieldFlags, v as PdfName, w as PdfStream, x as PdfObject, y as PdfNull } from "./pdfForm-Ca86NDWn.cjs";
3
3
  import { A as movePage, B as asPdfName, C as copyPages, D as cropPage, E as CropBox, F as rotateAllPages, I as rotatePage, L as asNumber, M as removePages, N as resizePage, O as getPageSize, P as reversePages, R as asPDFName, S as PageRange, T as splitPdf, V as asPdfNumber, _ as LayoutSinglelineResult, a as FontEmbeddingResult, b as layoutMultilineText, c as SubsetCmap, d as extractMetrics, f as ComputeFontSizeOptions, g as LayoutSinglelineOptions, h as LayoutMultilineResult, i as FontDescriptorData, j as removePage, k as insertPage, l as SubsetResult, m as LayoutMultilineOptions, n as CIDSystemInfoData, o as Type0FontData, p as LayoutCombedOptions, r as EmbeddedFont, s as WidthEntry, t as CIDFontData, u as FontMetrics, v as computeFontSize, w as mergePdfs, x as layoutSinglelineText, y as layoutCombedText, z as asPDFNumber } from "./fontEmbed-DxtdZxUj.cjs";
4
4
  import { a as ListboxAppearanceOptions, c as TextAppearanceOptions, d as generateDropdownAppearance, f as generateListboxAppearance, h as generateTextAppearance, i as DropdownAppearanceOptions, l as generateButtonAppearance, m as generateSignatureAppearance, n as ButtonAppearanceOptions, o as RadioAppearanceOptions, p as generateRadioAppearance, r as CheckboxAppearanceOptions, s as SignatureAppearanceOptions, t as AppearanceProviderFor, u as generateCheckboxAppearance } from "./fieldAppearance-Df1262CT.cjs";
5
- import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-CyBVhRU5.cjs";
5
+ import { _ as parseContentStream, a as ImageInfo, c as PdfParseError, d as TextExtractionOptions, f as TextItem$1, g as Operand, h as ContentStreamOperator, i as analyzeImages, l as formatHexContext, m as extractTextWithPositions, n as AnalyzeImagesOptions, o as decodeImageStream, p as extractText, r as ImageAnalysis, s as extractImages$1, t as AnalysisReport, u as decodeStream } from "./compressionAnalysis-CyBVhRU5.cjs";
6
6
 
7
7
  //#region \0rolldown/runtime.js
8
8
  //#endregion
@@ -2008,7 +2008,7 @@ interface SearchOptions {
2008
2008
  * @param options - Case-sensitivity / whole-word options (string queries).
2009
2009
  * @returns The matches in document order.
2010
2010
  */
2011
- declare function searchTextItems(items: readonly TextItem[], query: string | RegExp, options?: SearchOptions): TextMatch[];
2011
+ declare function searchTextItems(items: readonly TextItem$1[], query: string | RegExp, options?: SearchOptions): TextMatch[];
2012
2012
  //#endregion
2013
2013
  //#region src/parser/jpeg2000Decode.d.ts
2014
2014
  /**
@@ -8164,7 +8164,7 @@ interface TableExtractOptions {
8164
8164
  * share a consistent column structure. Returns an empty array
8165
8165
  * when no table-like block is found.
8166
8166
  */
8167
- declare function extractTables(items: readonly TextItem[], options?: TableExtractOptions): ExtractedTable[];
8167
+ declare function extractTables(items: readonly TextItem$1[], options?: TableExtractOptions): ExtractedTable[];
8168
8168
  /**
8169
8169
  * Serialise a table to RFC 4180 CSV. Fields containing a comma, a double
8170
8170
  * quote or a newline are wrapped in double quotes, with embedded quotes
@@ -8589,7 +8589,7 @@ interface Line {
8589
8589
  /** The representative baseline `y` coordinate of the line. */
8590
8590
  readonly y: number;
8591
8591
  /** The source items that make up this line, sorted left-to-right. */
8592
- readonly items: readonly TextItem[];
8592
+ readonly items: readonly TextItem$1[];
8593
8593
  }
8594
8594
  /**
8595
8595
  * A reconstructed paragraph: a run of vertically-adjacent lines.
@@ -8628,7 +8628,7 @@ interface ReconstructOptions {
8628
8628
  * @param options Reconstruction options.
8629
8629
  * @returns The reconstructed lines, in reading order.
8630
8630
  */
8631
- declare function reconstructLines(items: readonly TextItem[], options?: ReconstructOptions): Line[];
8631
+ declare function reconstructLines(items: readonly TextItem$1[], options?: ReconstructOptions): Line[];
8632
8632
  /**
8633
8633
  * Group positioned text items into paragraphs.
8634
8634
  *
@@ -8640,7 +8640,7 @@ declare function reconstructLines(items: readonly TextItem[], options?: Reconstr
8640
8640
  * @param options Reconstruction options.
8641
8641
  * @returns The reconstructed paragraphs, in reading order.
8642
8642
  */
8643
- declare function reconstructParagraphs(items: readonly TextItem[], options?: ReconstructOptions): Paragraph[];
8643
+ declare function reconstructParagraphs(items: readonly TextItem$1[], options?: ReconstructOptions): Paragraph[];
8644
8644
  //#endregion
8645
8645
  //#region src/core/collections.d.ts
8646
8646
  /**
@@ -9518,7 +9518,7 @@ type VNode = {
9518
9518
  /**
9519
9519
  * Options controlling how a {@link VNode} tree is rendered to PDF.
9520
9520
  */
9521
- interface RenderOptions {
9521
+ interface RenderOptions$1 {
9522
9522
  /** Base body font size in points. Default: 12. */
9523
9523
  readonly fontSize?: number | undefined;
9524
9524
  /** Page margin in points applied on all four sides. Default: 50. */
@@ -9551,7 +9551,7 @@ declare function h(type: VNode["type"], props: Record<string, unknown>, ...child
9551
9551
  * @param options Optional layout overrides.
9552
9552
  * @returns A promise resolving to the saved PDF bytes (starting `%PDF-`).
9553
9553
  */
9554
- declare function renderToPdf(root: VNode, options?: RenderOptions): Promise<Uint8Array>;
9554
+ declare function renderToPdf(root: VNode, options?: RenderOptions$1): Promise<Uint8Array>;
9555
9555
  //#endregion
9556
9556
  //#region src/compliance/pdfVT.d.ts
9557
9557
  /**
@@ -10181,8 +10181,515 @@ declare function layoutColumns(spans: TextSpan[] | string, frame: TextFrame, col
10181
10181
  * @returns An array of results, one per frame used.
10182
10182
  */
10183
10183
  declare function layoutTextFlow(spans: TextSpan[] | string, frames: TextFrame[], options?: ParagraphOptions, measureFn?: (text: string, font: string, size: number) => number): TextLayoutResult[];
10184
+ //#endregion
10185
+ //#region src/render/matrix.d.ts
10186
+ /**
10187
+ * @module render/matrix
10188
+ *
10189
+ * 2-D affine transforms used by the content-stream interpreter and rasterizer.
10190
+ * A PDF transformation matrix is the 6-tuple `[a, b, c, d, e, f]` representing
10191
+ *
10192
+ * ```
10193
+ * | a b 0 |
10194
+ * | c d 0 |
10195
+ * | e f 1 |
10196
+ * ```
10197
+ *
10198
+ * A point `(x, y)` maps to `(a·x + c·y + e, b·x + d·y + f)` (ISO 32000-2 §8.3.4).
10199
+ *
10200
+ * @packageDocumentation
10201
+ */
10202
+ /** A 2-D affine transform as the PDF `[a, b, c, d, e, f]` 6-tuple. */
10203
+ type Matrix = readonly [number, number, number, number, number, number];
10204
+ //#endregion
10205
+ //#region src/render/displayList.d.ts
10206
+ /** An 8-bit RGBA color, each channel `0–255`. */
10207
+ type Rgba = readonly [number, number, number, number];
10208
+ /**
10209
+ * A flattened sub-path: an array of page-space coordinates as a flat
10210
+ * `[x0, y0, x1, y1, …]` polyline. Bézier curves are flattened to line segments
10211
+ * by the interpreter.
10212
+ */
10213
+ interface SubPath {
10214
+ /** Flat `[x, y, …]` page-space points. */
10215
+ readonly points: readonly number[];
10216
+ /** Whether the sub-path is closed (last point joins the first). */
10217
+ readonly closed: boolean;
10218
+ }
10219
+ /** A filled region. */
10220
+ interface FillItem {
10221
+ readonly type: "fill";
10222
+ readonly subpaths: readonly SubPath[];
10223
+ /** Winding rule (`f`/`B` → nonzero, `f*`/`B*` → evenodd). */
10224
+ readonly rule: "nonzero" | "evenodd";
10225
+ readonly color: Rgba;
10226
+ /** Constant alpha from the graphics state (`ca`), `0–1`. */
10227
+ readonly alpha: number;
10228
+ /** Active clip path (page space), if any. */
10229
+ readonly clip?: readonly SubPath[] | undefined;
10230
+ }
10231
+ /** A stroked path. */
10232
+ interface StrokeItem {
10233
+ readonly type: "stroke";
10234
+ readonly subpaths: readonly SubPath[];
10235
+ readonly color: Rgba;
10236
+ readonly alpha: number;
10237
+ /** Line width in page-space units (the user-space width × CTM scale). */
10238
+ readonly lineWidth: number;
10239
+ readonly lineCap: 0 | 1 | 2;
10240
+ readonly lineJoin: 0 | 1 | 2;
10241
+ readonly clip?: readonly SubPath[] | undefined;
10242
+ }
10243
+ /** A positioned text run (a `Tj`/`TJ`/`'`/`"` show). */
10244
+ interface TextItem {
10245
+ readonly type: "text";
10246
+ /** The decoded Unicode text (best-effort via ToUnicode / WinAnsi). */
10247
+ readonly text: string;
10248
+ /** The resource font name (e.g. `F1`), or `undefined` if unresolved. */
10249
+ readonly font: string | undefined;
10250
+ /** Font size in text-space units. */
10251
+ readonly fontSize: number;
10252
+ /** Text-space → page-space transform at the run's origin (Tm × CTM). */
10253
+ readonly transform: Matrix;
10254
+ /** Fill color (text render modes 0/2/4/6). */
10255
+ readonly color: Rgba;
10256
+ readonly alpha: number;
10257
+ /** Text rendering mode (Tr), `0–7`; `3`/`7` are invisible (§9.3.3). */
10258
+ readonly renderMode: number;
10259
+ readonly clip?: readonly SubPath[] | undefined;
10260
+ }
10261
+ /** A placed image XObject (`Do`) or inline image (`BI…EI`). */
10262
+ interface ImageItem {
10263
+ readonly type: "image";
10264
+ /** Resource XObject name, or `inline` for an inline image. */
10265
+ readonly name: string;
10266
+ /** Unit-square `(0,0)–(1,1)` → page-space placement (the CTM at `Do`). */
10267
+ readonly transform: Matrix;
10268
+ readonly alpha: number;
10269
+ readonly clip?: readonly SubPath[] | undefined;
10270
+ }
10271
+ /** Any drawable produced by the interpreter. */
10272
+ type DisplayItem = FillItem | StrokeItem | TextItem | ImageItem;
10273
+ /** The full interpreted page: drawables in paint order + page dimensions. */
10274
+ interface DisplayList {
10275
+ /** Drawables in paint order (first = painted first / bottom-most). */
10276
+ readonly items: readonly DisplayItem[];
10277
+ /** Page width in user-space units (from the crop/media box). */
10278
+ readonly width: number;
10279
+ /** Page height in user-space units. */
10280
+ readonly height: number;
10281
+ /** Page-space origin offset (crop/media box lower-left), for renderers. */
10282
+ readonly origin: readonly [number, number];
10283
+ }
10284
+ //#endregion
10285
+ //#region src/render/interpreter.d.ts
10286
+ /** Options for {@link interpretContentStream}. */
10287
+ interface InterpretOptions {
10288
+ /** Page (crop/media box) width in user-space units. */
10289
+ width: number;
10290
+ /** Page (crop/media box) height in user-space units. */
10291
+ height: number;
10292
+ /** Page-space origin (crop/media box lower-left). Default `[0, 0]`. */
10293
+ origin?: readonly [number, number] | undefined;
10294
+ /** Page `/Resources` dict, for `Do`/`Tf` resolution. */
10295
+ resources?: PdfDict | undefined;
10296
+ /** Object registry, to resolve indirect resource refs. */
10297
+ registry?: PdfObjectRegistry | undefined;
10298
+ }
10299
+ /**
10300
+ * Execute a parsed content stream into a {@link DisplayList}.
10301
+ *
10302
+ * @param operators - Output of {@link parseContentStream}.
10303
+ * @param options - Page dimensions and (optional) resources/registry.
10304
+ */
10305
+ declare function interpretContentStream(operators: readonly ContentStreamOperator[], options: InterpretOptions): DisplayList;
10306
+ /**
10307
+ * Interpret a {@link PdfPage}'s content into a {@link DisplayList}, using its
10308
+ * crop/media box for dimensions and its resources/registry for `Do`/`gs`/`Tf`
10309
+ * resolution. The entry point for {@link renderPageToImage} et al.
10310
+ */
10311
+ declare function interpretPage(page: PdfPage): DisplayList;
10312
+ //#endregion
10313
+ //#region src/render/rasterizer.d.ts
10314
+ /** Options controlling raster output. */
10315
+ interface RenderOptions {
10316
+ /** Scale factor (1 = 72 dpi / 1 px per user unit). Overrides `dpi`. */
10317
+ scale?: number | undefined;
10318
+ /** Target resolution in dots per inch (72 dpi = scale 1). */
10319
+ dpi?: number | undefined;
10320
+ /** Background fill; `'transparent'` for a transparent canvas. Default white. */
10321
+ background?: Rgba | "transparent" | undefined;
10322
+ /** Render text runs as positioned glyph boxes. Default `true`. */
10323
+ renderText?: boolean | undefined;
10324
+ /**
10325
+ * Render only a pixel sub-window of the full-scale image (for tiling huge
10326
+ * pages). `x`/`y` are the tile's top-left in full-image pixel coordinates;
10327
+ * the returned image is `width`×`height`.
10328
+ */
10329
+ region?: {
10330
+ x: number;
10331
+ y: number;
10332
+ width: number;
10333
+ height: number;
10334
+ } | undefined;
10335
+ }
10336
+ /** A raw RGBA8888 image. */
10337
+ interface RasterImage {
10338
+ readonly data: Uint8Array;
10339
+ readonly width: number;
10340
+ readonly height: number;
10341
+ }
10342
+ /** Rasterize a display list to an RGBA8888 buffer. */
10343
+ declare function rasterize(dl: DisplayList, opts?: RenderOptions): RasterImage;
10344
+ /**
10345
+ * Render a {@link PdfPage} to a PNG image.
10346
+ * @returns The PNG bytes plus pixel dimensions.
10347
+ */
10348
+ declare function renderPageToImage(page: PdfPage, opts?: RenderOptions): Promise<{
10349
+ data: Uint8Array;
10350
+ width: number;
10351
+ height: number;
10352
+ }>;
10353
+ //#endregion
10354
+ //#region src/render/canvas.d.ts
10355
+ /** The subset of the Canvas 2D context API used by the renderer. */
10356
+ interface Canvas2DLike {
10357
+ save(): void;
10358
+ restore(): void;
10359
+ beginPath(): void;
10360
+ moveTo(x: number, y: number): void;
10361
+ lineTo(x: number, y: number): void;
10362
+ closePath(): void;
10363
+ fill(rule?: "nonzero" | "evenodd"): void;
10364
+ stroke(): void;
10365
+ fillRect(x: number, y: number, w: number, h: number): void;
10366
+ fillText(text: string, x: number, y: number): void;
10367
+ fillStyle: string;
10368
+ strokeStyle: string;
10369
+ lineWidth: number;
10370
+ font: string;
10371
+ }
10372
+ /** Options for Canvas rendering. */
10373
+ interface CanvasRenderOptions {
10374
+ /** Scale (1 = 72 dpi). Overrides `dpi`. */
10375
+ scale?: number | undefined;
10376
+ /** Target dpi (72 = scale 1). */
10377
+ dpi?: number | undefined;
10378
+ /** `devicePixelRatio` to multiply into the scale (browser HiDPI). Default 1. */
10379
+ pixelRatio?: number | undefined;
10380
+ /** Font family for text runs. Default `sans-serif`. */
10381
+ fontFamily?: string | undefined;
10382
+ }
10383
+ /** Replay a display list onto a 2D context. */
10384
+ declare function renderDisplayListToCanvas(dl: DisplayList, ctx: Canvas2DLike, opts?: CanvasRenderOptions): void;
10385
+ /**
10386
+ * Render a {@link PdfPage} onto a 2D context. The context's canvas should be
10387
+ * sized to `page.width × scale` by `page.height × scale`.
10388
+ */
10389
+ declare function renderPageToCanvas(page: PdfPage, ctx: Canvas2DLike, opts?: CanvasRenderOptions): void;
10390
+ //#endregion
10391
+ //#region src/render/thumbnail.d.ts
10392
+ /** Options for {@link generateThumbnail}. */
10393
+ interface ThumbnailOptions {
10394
+ /** Longest-side length in pixels. Default 256. */
10395
+ maxSize?: number | undefined;
10396
+ /** Background fill (defaults to white via the rasterizer). */
10397
+ background?: RenderOptions["background"];
10398
+ /** Render text runs (as boxes). Default true. */
10399
+ renderText?: boolean | undefined;
10400
+ }
10401
+ /**
10402
+ * Render `page` to a thumbnail PNG whose longest side is `maxSize` pixels,
10403
+ * preserving aspect ratio.
10404
+ */
10405
+ declare function generateThumbnail(page: PdfPage, opts?: ThumbnailOptions): Promise<{
10406
+ data: Uint8Array;
10407
+ width: number;
10408
+ height: number;
10409
+ }>;
10410
+ //#endregion
10411
+ //#region src/render/imageExtract.d.ts
10412
+ /**
10413
+ * A single decoded image extracted from a page's XObject resources.
10414
+ *
10415
+ * `pixels` is interleaved, row-major, 8-bit data:
10416
+ * - RGBA (4 channels) when {@link hasAlpha} is `true`,
10417
+ * - RGB (3 channels) for colour images without alpha,
10418
+ * - grayscale (1 channel) for `/DeviceGray` images without alpha.
10419
+ */
10420
+ interface ExtractedImage {
10421
+ /** Resource name of the image XObject (without the leading slash, e.g. `Im1`). */
10422
+ name: string;
10423
+ /** Image width in pixels. */
10424
+ width: number;
10425
+ /** Image height in pixels. */
10426
+ height: number;
10427
+ /** Number of interleaved channels in {@link pixels} (1, 3, or 4). */
10428
+ channels: number;
10429
+ /** Interleaved 8-bit pixel data (RGBA, RGB, or grayscale). */
10430
+ pixels: Uint8Array;
10431
+ /** Resolved colour-space name (e.g. `DeviceRGB`, `DeviceGray`, `DeviceCMYK`, `Indexed`). */
10432
+ colorSpace: string;
10433
+ /** Bits per component of the source samples (typically `8`). */
10434
+ bitsPerComponent: number;
10435
+ /** Whether {@link pixels} includes an alpha channel (4-channel RGBA). */
10436
+ hasAlpha: boolean;
10437
+ }
10438
+ /**
10439
+ * Extract and decode all image XObjects referenced by a page.
10440
+ *
10441
+ * @param page - The page whose `/Resources /XObject` images are extracted.
10442
+ * @returns One {@link ExtractedImage} per successfully decoded image XObject.
10443
+ * Images that cannot be decoded (unsupported filters/colour spaces,
10444
+ * missing WASM, malformed data) are skipped silently.
10445
+ *
10446
+ * @example
10447
+ * ```ts
10448
+ * import { loadPdf } from 'modern-pdf-lib';
10449
+ * import { extractImages } from 'modern-pdf-lib/render';
10450
+ *
10451
+ * const doc = await loadPdf(bytes);
10452
+ * for (const img of extractImages(doc.getPage(0))) {
10453
+ * console.log(img.name, img.width, img.height, img.channels, img.hasAlpha);
10454
+ * }
10455
+ * ```
10456
+ */
10457
+ declare function extractImages(page: PdfPage): ExtractedImage[];
10458
+ //#endregion
10459
+ //#region src/render/fontExtract.d.ts
10460
+ /** The on-disk format of an embedded font program. */
10461
+ type FontFileFormat = "truetype" | "cff" | "opentype" | "type1";
10462
+ /** A single embedded font program extracted from a page. */
10463
+ interface ExtractedFont {
10464
+ /** Resource name under `/Font` (e.g. `F1`), without the leading slash. */
10465
+ resourceName: string;
10466
+ /** The `/BaseFont` PostScript name, with any leading slash stripped. */
10467
+ baseFont: string;
10468
+ /** Detected font-program format. */
10469
+ format: FontFileFormat;
10470
+ /** The standalone, filter-decoded font bytes. */
10471
+ data: Uint8Array;
10472
+ /**
10473
+ * `true` when {@link baseFont} carries a 6-uppercase-letter `+`-prefixed
10474
+ * subset tag (e.g. `ABCDEF+Helvetica`).
10475
+ */
10476
+ subset: boolean;
10477
+ }
10478
+ /**
10479
+ * Extract every embedded font program referenced by a page.
10480
+ *
10481
+ * Walks the page's original `/Resources` → `/Font` dictionary. For each
10482
+ * font that carries an embedded file (`/FontFile`, `/FontFile2`, or
10483
+ * `/FontFile3`) — directly or via a Type0 descendant — the standalone,
10484
+ * filter-decoded font bytes are returned. Standard-14 fonts with no
10485
+ * embedded file are omitted, and malformed entries are skipped silently.
10486
+ *
10487
+ * @param page The page to scan (typically from a loaded PDF).
10488
+ * @returns One {@link ExtractedFont} per embedded font program.
10489
+ *
10490
+ * @example
10491
+ * ```ts
10492
+ * const loaded = await PdfDocument.load(bytes);
10493
+ * const fonts = extractFonts(loaded.getPage(0));
10494
+ * for (const f of fonts) {
10495
+ * console.log(f.resourceName, f.baseFont, f.format, f.data.length, f.subset);
10496
+ * }
10497
+ * ```
10498
+ */
10499
+ declare function extractFonts(page: PdfPage): ExtractedFont[];
10500
+ //#endregion
10501
+ //#region src/render/diff.d.ts
10502
+ /** Result of a visual comparison. */
10503
+ interface DiffResult {
10504
+ readonly width: number;
10505
+ readonly height: number;
10506
+ /** Number of pixels whose max channel difference exceeds the threshold. */
10507
+ readonly changedPixels: number;
10508
+ /** `changedPixels / (width·height)`. */
10509
+ readonly changedRatio: number;
10510
+ /** Mean structural similarity over 8×8 luminance blocks, `0–1` (1 = identical). */
10511
+ readonly ssim: number;
10512
+ /** RGBA heatmap: changed pixels in red over a dimmed grayscale of image A. */
10513
+ readonly heatmap: Uint8Array;
10514
+ }
10515
+ /** Options for {@link compareImages}. */
10516
+ interface CompareOptions {
10517
+ /** Per-channel difference (0–255) above which a pixel counts as changed. Default 16. */
10518
+ threshold?: number | undefined;
10519
+ }
10520
+ /** Compare two equally-sized raster images. */
10521
+ declare function compareImages(a: RasterImage, b: RasterImage, opts?: CompareOptions): DiffResult;
10522
+ /** Rasterize two pages at the same scale and compare them. */
10523
+ declare function comparePages(pageA: PdfPage, pageB: PdfPage, opts?: RenderOptions & CompareOptions): Promise<DiffResult>;
10524
+ //#endregion
10525
+ //#region src/render/ocr.d.ts
10526
+ /**
10527
+ * A single recognized word with its bounding box in **page space**.
10528
+ *
10529
+ * Coordinates follow the PDF convention: the origin is the lower-left corner
10530
+ * of the page and the y-axis points up. `x`/`y` are the lower-left corner of
10531
+ * the word box; `width`/`height` are its extent in page units (points).
10532
+ */
10533
+ interface OcrWord {
10534
+ /** The recognized text of the word. */
10535
+ text: string;
10536
+ /** X coordinate of the word box's lower-left corner, in page units. */
10537
+ x: number;
10538
+ /** Y coordinate of the word box's lower-left corner (y-up), in page units. */
10539
+ y: number;
10540
+ /** Width of the word box, in page units. */
10541
+ width: number;
10542
+ /** Height of the word box, in page units. */
10543
+ height: number;
10544
+ }
10545
+ /**
10546
+ * A pluggable OCR backend.
10547
+ *
10548
+ * Implementations receive an interleaved 8-bit RGBA bitmap of the rasterized
10549
+ * page (row-major, top-to-bottom, `width * height * 4` bytes) and return the
10550
+ * recognized words with **page-space** bounding boxes (see {@link OcrWord}).
10551
+ */
10552
+ interface OcrEngine {
10553
+ /**
10554
+ * Recognize text in a rasterized page.
10555
+ *
10556
+ * @param rgba Interleaved RGBA8888 pixels (`width * height * 4` bytes).
10557
+ * @param width Bitmap width in pixels.
10558
+ * @param height Bitmap height in pixels.
10559
+ * @returns The recognized words, with page-space boxes.
10560
+ */
10561
+ recognize(rgba: Uint8Array, width: number, height: number): Promise<OcrWord[]>;
10562
+ }
10563
+ /** Options controlling {@link applyOcr}. */
10564
+ interface ApplyOcrOptions {
10565
+ /**
10566
+ * Rasterization resolution handed to the engine, in dots per inch.
10567
+ * Higher values give the OCR engine more detail at the cost of memory.
10568
+ * Default: `150`.
10569
+ */
10570
+ dpi?: number | undefined;
10571
+ /**
10572
+ * Resource name to use for the invisible overlay font. A standard
10573
+ * Helvetica Type 1 font is embedded under this name if it is not already
10574
+ * present. Default: `'OCRFont'`.
10575
+ */
10576
+ fontResourceName?: string | undefined;
10577
+ }
10578
+ /**
10579
+ * Run OCR on a page and append the recognized text as an invisible,
10580
+ * selectable/searchable overlay.
10581
+ *
10582
+ * The page is rasterized to RGBA at `opts.dpi`, passed to `engine.recognize`,
10583
+ * and each returned word is written back as a content-stream fragment:
10584
+ *
10585
+ * ```text
10586
+ * BT 3 Tr /<font> <size> Tf <x> <y> Td (<escaped text>) Tj ET
10587
+ * ```
10588
+ *
10589
+ * where `<size> ≈ word.height` and `<x> <y>` is the word's lower-left corner
10590
+ * in page space. Render mode `3` makes the text invisible (no fill, no
10591
+ * stroke) while keeping it part of the document's text content.
10592
+ *
10593
+ * @param page The page to OCR and annotate.
10594
+ * @param engine The OCR backend.
10595
+ * @param opts Optional DPI and font-resource overrides.
10596
+ * @returns The words returned by the engine (unmodified).
10597
+ */
10598
+ declare function applyOcr(page: PdfPage, engine: OcrEngine, opts?: ApplyOcrOptions): Promise<OcrWord[]>;
10599
+ //#endregion
10600
+ //#region src/render/redactContent.d.ts
10601
+ /** A rectangular region to redact, in page space (PDF points, y-up, lower-left origin). */
10602
+ interface RedactRect {
10603
+ /** X coordinate of the lower-left corner. */
10604
+ x: number;
10605
+ /** Y coordinate of the lower-left corner. */
10606
+ y: number;
10607
+ /** Width of the region (must be > 0 to match anything). */
10608
+ width: number;
10609
+ /** Height of the region (must be > 0 to match anything). */
10610
+ height: number;
10611
+ }
10612
+ /** The outcome of a {@link redactRegions} call. */
10613
+ interface RedactResult {
10614
+ /** Number of text-showing operators removed. */
10615
+ removedText: number;
10616
+ /** Number of image (`Do`) placements removed. */
10617
+ removedImages: number;
10618
+ }
10619
+ /**
10620
+ * Permanently remove text and image content within the given regions from a
10621
+ * page (redaction by removal).
10622
+ *
10623
+ * The page's content stream is parsed, replayed through a position-tracking
10624
+ * graphics-state machine, and re-emitted with every text-showing operator and
10625
+ * image placement that falls inside any redaction rect omitted. All other
10626
+ * operators — paths, fills, colors, clips, state changes — are preserved, so
10627
+ * the surrounding page layout is left intact. The filtered content is written
10628
+ * back to the page and takes effect on the next `save()`.
10629
+ *
10630
+ * @param page The page to redact (modified in place).
10631
+ * @param rects Redaction regions in page space (PDF points, y-up).
10632
+ * @returns Counts of removed text runs and image placements.
10633
+ *
10634
+ * @example
10635
+ * ```ts
10636
+ * const result = redactRegions(page, [{ x: 0, y: 90, width: 200, height: 30 }]);
10637
+ * console.log(`Removed ${result.removedText} text runs`);
10638
+ * const bytes = await doc.save();
10639
+ * ```
10640
+ */
10641
+ declare function redactRegions(page: PdfPage, rects: RedactRect[]): RedactResult;
10642
+ //#endregion
10643
+ //#region src/render/tiles.d.ts
10644
+ /** Options for tiling. */
10645
+ interface TileOptions {
10646
+ /** Tile edge length in pixels. Default 512. */
10647
+ tileSize?: number | undefined;
10648
+ /** Scale (1 = 72 dpi). Overrides `dpi`. */
10649
+ scale?: number | undefined;
10650
+ /** Target dpi (72 = scale 1). */
10651
+ dpi?: number | undefined;
10652
+ /** Background fill. */
10653
+ background?: RenderOptions["background"];
10654
+ /** Render text runs. Default true. */
10655
+ renderText?: boolean | undefined;
10656
+ }
10657
+ /** Tile grid geometry for a page at a given scale. */
10658
+ interface TileGrid {
10659
+ readonly columns: number;
10660
+ readonly rows: number;
10661
+ readonly tileSize: number;
10662
+ readonly fullWidth: number;
10663
+ readonly fullHeight: number;
10664
+ readonly scale: number;
10665
+ }
10666
+ /** Compute the tile grid for a page. */
10667
+ declare function computeTileGrid(page: PdfPage, opts?: TileOptions): TileGrid;
10668
+ /** Render a single tile `(column, row)` of a page to an RGBA image. */
10669
+ declare function renderPageTile(page: PdfPage, column: number, row: number, opts?: TileOptions): RasterImage;
10670
+ /**
10671
+ * A simple least-recently-used cache (Map-backed). Useful for memoizing
10672
+ * interpreted display lists or rasterized tiles across renders.
10673
+ */
10674
+ declare class RenderCache<V> {
10675
+ private readonly maxEntries;
10676
+ private readonly map;
10677
+ constructor(maxEntries?: number);
10678
+ /** Number of cached entries. */
10679
+ get size(): number;
10680
+ /** Look up a value, marking it most-recently-used. */
10681
+ get(key: string): V | undefined;
10682
+ /** Whether a key is present (without affecting recency). */
10683
+ has(key: string): boolean;
10684
+ /** Insert/replace a value, evicting the LRU entry when over capacity. */
10685
+ set(key: string, value: V): void;
10686
+ /** Remove a key. */
10687
+ delete(key: string): boolean;
10688
+ /** Empty the cache. */
10689
+ clear(): void;
10690
+ }
10184
10691
  declare namespace index_d_exports {
10185
- export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, AssociatedFileOptions, AssociatedFileResult, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, CaretSymbol, CatalogOptions, CellContent, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorStop, CombedTextLayoutError, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DirectEmbedOptions, DirectEmbedResult, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPdfError, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedTable, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LabParams, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, MdpPermission, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PluginDocument, PluginError, PluginPage, PostScriptFunction, PrepareAppearanceOptions, PresetName, PresetOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RawImageData, RecompressOptions, ReconstructOptions, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionResult, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RequirementType, RgbColor, 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, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StructureElementOptions, StructureType, StyledBarcodeOptions, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaskRunner, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextExtractionOptions, TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidationFinding, ValidationLevel, RenderOptions as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractIccProfile, extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, 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, 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, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderMultiPageTable, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
10692
+ export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DiffResult, DirectEmbedOptions, DirectEmbedResult, DisplayItem, DisplayList, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPdfError, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FillItem, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontFileFormat, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageItem, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LabParams, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, Matrix, MdpPermission, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, OcrEngine, OcrWord, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PluginDocument, PluginError, PluginPage, PostScriptFunction, PrepareAppearanceOptions, PresetName, PresetOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionResult, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SarifLog, SarifResult, SarifRun, ScriptRun, SetTitleOptions, SignOptions, SignatureAlgorithm, SignatureAppearanceOptions, SignatureByteRange, SignatureChainEntry, SignatureChainResult, SignatureOptions, SignatureVerificationResult, SignerInfo, SoftMaskBuilder, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StrokeItem, StructureElementOptions, StructureType, StyledBarcodeOptions, SubPath, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaskRunner, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextItem as TextDisplayItem, TextExtractionOptions, TextItem$1 as TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidationFinding, ValidationLevel, RenderOptions$1 as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleTiles, attachFile, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertificateChain, buildCollection, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildViewerPreferencesDict, buildVtDpm, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages$1 as extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages as extractPageImages, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate$1 as formatAcrobatDate, formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveFallback, resolveFieldReference, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
10186
10693
  }
10187
10694
  /**
10188
10695
  * Options for WASM module initialization.
@@ -10234,5 +10741,5 @@ interface InitWasmOptions {
10234
10741
  */
10235
10742
  declare function initWasm(options?: string | URL | InitWasmOptions): Promise<void>;
10236
10743
  //#endregion
10237
- export { generateOrderX as $, extractIccProfile as $a, findSignatures as $c, PdfWorker as $i, aesDecryptCBC as $l, BatchOptions as $n, XmpValidationResult as $o, estimateTextWidth as $r, detectModifications as $s, DocTimeStampOptions as $t, buildDeviceNColorSpace as $u, WorkerPoolOptions as A, encodePngFromPixels as Aa, checkCertificateStatus as Ac, IncrementalSaveResult as Ad, encodeUpcA as Ai, PdfUnderlineAnnotation as Al, TableExtractOptions as An, applyRedaction as Ao, InvalidColorError as Ar, IncrementalChange as As, buildThresholdHalftone as At, endMarkedContent as Au, renderToPdf as B, convertTiffCmykToRgb as Ba, encodeInteger as Bc, Code39Options as Bi, AFNumber_Format as Bl, ParsedPage as Bn, generatePdfAXmpBytes as Bo, HeaderFooterContent as Br, addCounterSignature as Bs, evaluateFunction as Bt, setCharacterSpacing as Bu, DeferredSignOptions as C, decodeWebP as Ca, extractEmbeddedRevocationData as Cc, setLineJoin as Cd, encodePdf417 as Ci, PdfLineAnnotation as Cl, buildPieceInfo as Cn, decodeJpegWasm as Co, CombedTextLayoutError as Cr, validatePdfA as Cs, buildBoxDict as Ct, beginArtifact as Cu, signDeferred as D, DirectEmbedResult as Da, downloadCrl as Dc, isOpenTypeCFF as Dd, dataMatrixToOperators as Di, PdfHighlightAnnotation as Dl, DocumentPart as Dn, OverlayAlignment as Do, FieldExistsAsNonTerminalError as Dr, getLinearizationInfo as Ds, STANDARD_SPOT_FUNCTIONS as Dt, beginMarkedContentWithProperties as Du, SignatureAlgorithm as E, DirectEmbedOptions as Ea, validateCertificateChain as Ec, stroke as Ed, DataMatrixResult as Ei, PdfSquareAnnotation as El, buildRequirements as En, isJpegWasmReady as Eo, FieldAlreadyExistsError as Er, delinearizePdf as Es, validateBoxGeometry as Et, beginMarkedContentSequence as Eu, buildVtDpm as F, detectImageFormat as Fa, requestTimestamp as Fc, encodeEan13 as Fi, PdfTextAnnotation as Fl, accessibilityPlugin as Fn, EnforcePdfAResult as Fo, PluginError as Fr, LtvOptions as Fs, ExponentialFunction as Ft, beginText as Fu, createRangeFetcher as G, injectJpegMetadata as Ga, encodeSequence as Gc, code128ToOperators as Gi, setFieldValue as Gl, PdfDocumentBuilder as Gn, stripProhibitedFeatures as Go, formatDate as Gr, FieldLockInfo as Gs, CollectionView as Gt, setTextRenderingMode as Gu, FetchLikeResponse as H, isCmykTiff as Ha, encodeOID as Hc, computeCode39CheckDigit as Hi, createSandbox as Hl, StreamingParserEvent as Hn, StripResult as Ho, HeaderFooterPosition as Hr, DiffEntry as Hs, markdownToPdf as Ht, setFontSize as Hu, gtsPdfVtVersion as I, getImageFormatName as Ia, SignatureOptions as Ic, encodeEan8 as Ii, TextAnnotationIcon as Il, MetadataPluginOptions as In, EnforcementAction as Io, RemovePageFromEmptyDocumentError as Ir, buildDssDictionary as Is, PdfFunctionDef as It, endText as Iu, ScriptRun as J, ImageDpi as Ja, encodeUtf8String as Jc, valuesToModules as Ji, AFSpecial_Format as Jl, getInlineWasmSize as Jn, AssociatedFileResult as Jo, toRoman as Jr, buildFieldLockDict as Js, Paragraph as Jt, showText as Ju, FallbackFont as K, JpegMarkerInfo as Ka, encodeSet as Kc, encodeCode128 as Ki, addVisibilityAction as Kl, WasmModuleName as Kn, AFRelationship as Ko, replaceTemplateVariables as Kr, FieldLockOptions as Ks, buildCollection as Kt, setTextRise as Ku, RenderOptions as L, getSupportedFormats as La, SignerInfo as Lc, ItfOptions as Li, AFDate_FormatEx as Ll, metadataPlugin as Ln, enforcePdfAFull as Lo, RichTextFieldReadError as Lr, embedLtvData as Ls, PostScriptFunction as Lt, moveText as Lu, PdfVtConformance as M, webpToJpeg as Ma, TimestampResult as Mc, saveIncremental as Md, calculateEanCheckDigit as Mi, PdfFreeTextAnnotation as Ml, tableToCsv as Mn, enforcePdfX as Mo, InvalidPageSizeError as Mr, findChangedObjects as Ms, buildType5Halftone as Mt, drawImageWithMatrix as Mu, RecordMetadata as N, webpToPng as Na, buildTimestampRequest as Nc, ean13ToOperators as Ni, LinkHighlightMode as Nl, tableToJson as Nn, validatePdfX as No, MissingOnValueCheckError as Nr, optimizeIncrementalSave as Ns, identityTransferFunction as Nt, drawImageXObject as Nu, TaskRunner as O, canDirectEmbed as Oa, extractCrlUrls as Oc, isTrueType as Od, encodeDataMatrix as Oi, PdfSquigglyAnnotation as Ol, buildDPartRoot as On, RedactionOperatorOptions as Oo, FontNotEmbeddedError as Or, isLinearized as Os, Type1Halftone as Ot, createMarkedContentScope as Ou, buildPdfVtDParts as P, ImageFormat as Pa, parseTimestampResponse as Pc, ean8ToOperators as Pi, PdfLinkAnnotation as Pl, AccessibilityPluginOptions as Pn, EnforcePdfAOptions as Po, NoSuchFieldError as Pr, DssData as Ps, nameHalftone as Pt, drawXObject as Pu, XRechnungOptions as Q, embedIccProfile as Qa, embedSignature as Qc, base64Encode as Qi, sha512 as Ql, BatchErrorStrategy as Qn, XmpIssue as Qo, ellipsisText as Qr, ModificationViolationType as Qs, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as Qt, showTextWithSpacing as Qu, VNode as R, TiffCmykEmbedResult as Ra, buildPkcs7Signature as Rc, encodeItf as Ri, formatDate$1 as Rl, TimestampPluginOptions as Rn, PdfAXmpOptions as Ro, StreamingParseError as Rr, hasLtvData as Rs, SampledFunction as Rt, moveTextSetLeading as Ru, readWoffHeader as S, WebPImage as Sa, TrustStore as Sc, setLineCap as Sd, Pdf417Options as Si, PdfCircleAnnotation as Sl, buildNamespacesArray as Sn, JpegWasmModule as So, BatchProcessingError as Sr, enforcePdfA as Ss, PdfX6Variant as St, MarkedContentScope as Su, ExternalSigner as T, isWebPLossless as Ta, buildCertificateChain as Tc, setMiterLimit as Td, DataMatrixOptions as Ti, PdfPolygonAnnotation as Tl, buildRequirement as Tn, initJpegWasm as To, ExceededMaxLengthError as Tr, LinearizationOptions as Ts, buildPdfX6OutputIntent as Tt, beginMarkedContent as Tu, RangeFetchOptions as U, JpegMetadata as Ua, encodeOctetString as Uc, encodeCode39 as Ui, getFieldValue as Ul, StreamingParserOptions as Un, StrippedFeature as Uo, applyHeaderFooter as Ur, DocumentDiff as Us, CollectionOptions as Ut, setLeading as Uu, FetchLike as V, embedTiffCmyk as Va, encodeLength as Vc, code39ToOperators as Vi, formatNumber as Vl, StreamingParseResult as Vn, StripOptions as Vo, HeaderFooterOptions as Vr, getCounterSignatures as Vs, MarkdownToPdfOptions as Vt, setFont as Vu, RangeFetcher as W, extractJpegMetadata as Wa, encodePrintableString as Wc, Code128Options as Wi, resolveFieldReference as Wl, StreamingPdfParser as Wn, countOccurrences as Wo, applyHeaderFooterToPage as Wr, diffSignedContent as Ws, CollectionSchemaField as Wt, setTextMatrix as Wu, splitByScript as X, computeTargetDimensions as Xa, PrepareAppearanceOptions as Xc, BarcodeOptions as Xi, sha256 as Xl, isValidModuleName as Xn, createAssociatedFile as Xo, OverflowResult as Xr, ModificationReport as Xs, reconstructLines as Xt, showTextHex as Xu, resolveFallback as Y, computeImageDpi as Ya, ByteRangeResult as Yc, BarcodeMatrix as Yi, validateFieldValue as Yl, hasInlineWasmData as Yn, buildAfArray as Yo, OverflowMode as Yr, getFieldLocks as Ys, ReconstructOptions as Yt, showTextArray as Yu, OrderXType as Z, IccProfile as Za, computeSignatureHash as Zc, base64Decode as Zi, sha384 as Zl, preloadInlineWasm as Zn, ParsedXmpMetadata as Zo, applyOverflow as Zr, ModificationViolation as Zs, reconstructParagraphs as Zt, showTextNextLine as Zu, parseTileInfo as _, decodeTiffAll as _a, verifySignatureDetailed as _c, lineTo as _d, readEan8 as _i, PdfRedactAnnotation as _l, toSarif as _n, estimateJpegQuality as _o, FlattenFormResult as _r, detectTransparency as _s, InvoiceParty as _t, buildXmpMetadata as _u, layoutColumns as a, detectRuntime as aa, SignatureChainResult as ac, closeFillAndStroke as ad, TablePreset as ai, generateHighlightAppearance as al, buildCalRGB as an, deduplicateImages as ao, PageLabelRange as ar, getSupportedLevels as as, buildPdfA4Xmp as at, verifyOwnerPassword as au, isWoff as b, isTiff as ba, validateExtendedKeyUsage as bc, setDashPattern as bd, renderStyledBarcode as bi, StandardStampName as bl, PDF2_NAMESPACE as bn, ChromaSubsampling as bo, flattenFields as br, PdfALevel as bs, PdfRect as bt, PdfStreamWriter as bu, downscale16To8 as c, isWasmModuleCached as ca, IncrementalObject as cc, curveTo as cd, borderedPreset as ci, generateSquareAppearance as cl, DEFAULT_SARIF_TOOL_NAME as cn, OptimizationReport as co, removePageLabels as cr, generateWinAnsiToUnicodeCmap as cs, buildFunctionShading as ct, PdfUaError as cu, offsetSignedToUnsigned as d, provideWasmBytes as da, TrailerInfo as dc, ellipsePath as dd, stripedPreset as di, generateUnderlineAppearance as dl, SarifLog as dn, DownscaleOptions as do, BookmarkNode as dr, OutputIntentOptions as ds, didYouMean as dt, PdfUaWarning as du, PdfWorkerOptions as ea, MdpPermission as ec, buildSeparationColorSpace as ed, shrinkFontSize as ei, prepareForSigning as el, buildDocTimeStampDict as en, parseIccColorSpace as eo, BatchProgressCallback as er, extractXmpMetadata as es, generateXRechnungCii as et, aesEncryptCBC as eu, summarizeBitDepth as f, resetWasmLoader as fa, appendIncrementalUpdate as fc, endPath as fd, BarcodeReadResult as fi, FileAttachmentIcon as fl, SarifResult as fn, ImageOptimizeOptions as fo, BookmarkRef as fr, buildOutputIntent as fs, levenshtein as ft, enforcePdfUa as fu, decodeTileRegion as g, decodeTiff as ga, validateByteRangeIntegrity as gc, fillEvenOddAndStroke as gd, readEan13 as gi, PdfPopupAnnotation as gl, toJsonReport as gn, downscaleImage as go, removeBookmark as gr, TransparencyInfo as gs, InvoiceLine as gt, summarizeIssues as gu, decodeTile as h, TiffImage as ha, saveIncrementalWithSignaturePreservation as hc, fillEvenOdd as hd, readCode39 as hi, PdfCaretAnnotation as hl, ValidationLevel as hn, RecompressOptions as ho, removeAllBookmarks as hr, TransparencyFinding as hs, Invoice as ht, isAccessible as hu, findHyphenationPoints as i, configureWasmLoader as ia, SignatureChainEntry as ic, closeAndStroke as id, PresetOptions as ii, generateFreeTextAppearance as il, buildCalGray as in, DeduplicationReport as io, processBatch as ir, getProfile as is, PdfA4Options as it, computeFileEncryptionKey as iu, createWorkerPool as j, recompressWebP as ja, extractOcspUrl as jc, saveDocumentIncremental as jd, upcAToOperators as ji, FreeTextAlignment as jl, extractTables as jn, buildPdfXOutputIntent as jo, InvalidFieldNamePartError as jr, computeObjectHash as js, buildType1Halftone as jt, wrapInMarkedContent as ju, WorkerPool as k, embedTiffDirect as ka, isCertificateRevoked as kc, ChangeTracker as kd, calculateUpcCheckDigit as ki, PdfStrikeOutAnnotation as kl, ExtractedTable as kn, RedactionResult as ko, ForeignPageError as kr, linearizePdf as ks, buildSampledTransferFunction as kt, endArtifact as ku, getComponentDepths as l, loadWasmModule as la, IncrementalSaveOptions as lc, curveToFinal as ld, minimalPreset as li, generateSquigglyAppearance as ll, JsonReport as ln, ProgressInfo as lo, setPageLabels as lr, generateZapfDingbatsToUnicodeCmap as ls, sampleShadingColor as lt, PdfUaLevel as lu, assembleTiles as m, TiffDecodeOptions as ma, parseExistingTrailer as mc, fillAndStroke as md, readCode128 as mi, CaretSymbol as ml, ValidationFinding as mn, RawImageData as mo, getBookmarks as mr, generateSrgbIccProfile as ms, FacturXProfile as mt, checkAccessibility as mu, index_d_exports as n, WasmLoaderConfig as na, getCertificationLevel as nc, clip as nd, wrapText as ni, searchTextItems as nl, CalRGBParams as nn, convertToGrayscale as no, batchFlatten as nr, validateXmpMetadata as ns, PdfA4ExtensionSchema as nt, md5 as nu, layoutParagraph as o, instantiateWasmModuleStreaming as oa, validateSignatureChain as oc, closeFillEvenOddAndStroke as od, applyPreset as oi, generateInkAppearance as ol, buildLab as on, BatchOptimizeOptions as oo, PageLabelStyle as or, isValidLevel as os, pdfA4Rules as ot, verifyUserPassword as ou, upscale8To16 as p, IfdEntry as pa, findExistingSignatures as pc, fill as pd, readBarcode as pi, PdfFileAttachmentAnnotation as pl, SarifRun as pn, OptimizeResult as po, addBookmark as pr, SRGB_ICC_PROFILE as ps, renderCodeFrame as pt, validatePdfUa as pu, FallbackRun as q, analyzeJpegMarkers as qa, encodeUTCTime as qc, encodeCode128Values as qi, setFieldVisibility as ql, getInlineWasmBytes as qn, AssociatedFileOptions as qo, toAlpha as qr, addFieldLock as qs, Line as qt, setWordSpacing as qu, initWasm as r, clearWasmCache as ra, setCertificationLevel as rc, clipEvenOdd as rd, PresetName as ri, generateCircleAppearance as rl, LabParams as rn, isGrayscaleImage as ro, batchMerge as rr, PdfAProfile as rs, PdfA4Level as rt, EncryptDictValues as ru, layoutTextFlow as s, isWasmDisabled as sa, AppendOptions as sc, closePath as sd, applyTablePreset as si, generateLineAppearance as sl, labToRgb as sn, ImageOptimizeEntry as so, getPageLabels as sr, generateSymbolToUnicodeCmap as ss, FunctionShadingOptions as st, PdfUaEnforcementResult as su, InitWasmOptions as t, RuntimeKind as ta, buildDocMdpReference as tc, circlePath as td, truncateText as ti, decodeJpeg2000 as tl, CalGrayParams as tn, parseIccDescription as to, BatchResult as tr, parseXmpMetadata as ts, PdfA4ExtensionProperty as tt, rc4 as tu, normalizeComponentDepth as u, loadWasmModuleStreaming as ua, SignatureByteRange as uc, curveToInitial as ud, professionalPreset as ui, generateStrikeOutAppearance as ul, SARIF_SCHEMA_URI as un, optimizeAllImages as uo, AddBookmarkOptions as ur, getToUnicodeCmap as us, CodeFrameOptions as ut, PdfUaValidationResult as uu, WoffInfo as v, decodeTiffPage as va, EKU_OIDS as vc, moveTo as vd, StyledBarcodeOptions as vi, PdfInkAnnotation as vl, MATHML_NAMESPACE as vn, optimizeImage as vo, FlattenOptions as vr, flattenTransparency as vs, generateCiiXml as vt, createXmpStream as vu, DeferredSignResult as w, isWebP as wa, verifyOfflineRevocation as wc, setLineWidth as wd, pdf417ToOperators as wi, PdfPolyLineAnnotation as wl, RequirementType as wn, encodeJpegWasm as wo, EncryptedPdfError as wr, LinearizationInfo as ws, buildGtsPdfxVersion as wt, beginArtifactWithType as wu, isWoff2 as x, parseTiffIfd as xa, validateKeyUsage as xc, setFlatness as xd, Pdf417Matrix as xi, LineEndingStyle as xl, buildNamespace as xn, JpegDecodeResult as xo, flattenForm as xr, PdfAValidationResult as xs, PdfX6Options as xt, PDFOperator as xu, decodeWoff as y, getTiffPageCount as ya, validateCertificatePolicy as yc, rectangle as yd, calculateBarcodeDimensions as yi, PdfStampAnnotation as yl, NamespaceDef as yn, recompressImage as yo, flattenField as yr, PdfAIssue as ys, BoxGeometry as yt, parseXmpMetadata$1 as yu, h as z, TiffIfdEntry as za, encodeContextTag as zc, itfToOperators as zi, parseAcrobatDate as zl, timestampPlugin as zn, generatePdfAXmp as zo, UnexpectedFieldTypeError as zr, CounterSignatureInfo as zs, StitchingFunction as zt, nextLine as zu };
10238
- //# sourceMappingURL=index-_Onej9Wy.d.cts.map
10744
+ export { normalizeComponentDepth as $, loadWasmModuleStreaming as $a, SignatureByteRange as $c, curveToInitial as $d, professionalPreset as $i, generateStrikeOutAppearance as $l, SARIF_SCHEMA_URI as $n, optimizeAllImages as $o, AddBookmarkOptions as $r, getToUnicodeCmap as $s, CodeFrameOptions as $t, PdfUaValidationResult as $u, renderPageToCanvas as A, code39ToOperators as Aa, getCounterSignatures as Ac, setFont as Ad, HeaderFooterOptions as Ai, encodeLength as Al, MarkdownToPdfOptions as An, embedTiffCmyk as Ao, StreamingParseResult as Ar, StripOptions as As, FetchLike as At, formatNumber as Au, FillItem as B, base64Decode as Ba, ModificationViolation as Bc, showTextNextLine as Bd, applyOverflow as Bi, computeSignatureHash as Bl, reconstructParagraphs as Bn, IccProfile as Bo, preloadInlineWasm as Br, ParsedXmpMetadata as Bs, OrderXType as Bt, sha384 as Bu, ExtractedImage as C, ean8ToOperators as Ca, DssData as Cc, drawXObject as Cd, NoSuchFieldError as Ci, parseTimestampResponse as Cl, nameHalftone as Cn, ImageFormat as Co, AccessibilityPluginOptions as Cr, EnforcePdfAOptions as Cs, buildPdfVtDParts as Ct, PdfLinkAnnotation as Cu, Canvas2DLike as D, encodeItf as Da, hasLtvData as Dc, moveTextSetLeading as Dd, StreamingParseError as Di, buildPkcs7Signature as Dl, SampledFunction as Dn, TiffCmykEmbedResult as Do, TimestampPluginOptions as Dr, PdfAXmpOptions as Ds, VNode as Dt, formatDate$1 as Du, generateThumbnail as E, ItfOptions as Ea, embedLtvData as Ec, moveText as Ed, RichTextFieldReadError as Ei, SignerInfo as El, PostScriptFunction as En, getSupportedFormats as Eo, metadataPlugin as Er, enforcePdfAFull as Es, RenderOptions$1 as Et, AFDate_FormatEx as Eu, InterpretOptions as F, encodeCode128 as Fa, FieldLockOptions as Fc, setTextRise as Fd, replaceTemplateVariables as Fi, encodeSet as Fl, buildCollection as Fn, JpegMarkerInfo as Fo, WasmModuleName as Fr, AFRelationship as Fs, FallbackFont as Ft, addVisibilityAction as Fu, TextItem as G, WasmLoaderConfig as Ga, getCertificationLevel as Gc, clip as Gd, wrapText as Gi, searchTextItems as Gl, CalRGBParams as Gn, convertToGrayscale as Go, batchFlatten as Gr, validateXmpMetadata as Gs, PdfA4ExtensionSchema as Gt, md5 as Gu, Rgba as H, PdfWorker as Ha, detectModifications as Hc, buildDeviceNColorSpace as Hd, estimateTextWidth as Hi, findSignatures as Hl, DocTimeStampOptions as Hn, extractIccProfile as Ho, BatchOptions as Hr, XmpValidationResult as Hs, generateOrderX as Ht, aesDecryptCBC as Hu, interpretContentStream as I, encodeCode128Values as Ia, addFieldLock as Ic, setWordSpacing as Id, toAlpha as Ii, encodeUTCTime as Il, Line as In, analyzeJpegMarkers as Io, getInlineWasmBytes as Ir, AssociatedFileOptions as Is, FallbackRun as It, setFieldVisibility as Iu, layoutColumns as J, detectRuntime as Ja, SignatureChainResult as Jc, closeFillAndStroke as Jd, TablePreset as Ji, generateHighlightAppearance as Jl, buildCalRGB as Jn, deduplicateImages as Jo, PageLabelRange as Jr, getSupportedLevels as Js, buildPdfA4Xmp as Jt, verifyOwnerPassword as Ju, Matrix as K, clearWasmCache as Ka, setCertificationLevel as Kc, clipEvenOdd as Kd, PresetName as Ki, generateCircleAppearance as Kl, LabParams as Kn, isGrayscaleImage as Ko, batchMerge as Kr, PdfAProfile as Ks, PdfA4Level as Kt, EncryptDictValues as Ku, interpretPage as L, valuesToModules as La, buildFieldLockDict as Lc, showText as Ld, toRoman as Li, encodeUtf8String as Ll, Paragraph as Ln, ImageDpi as Lo, getInlineWasmSize as Lr, AssociatedFileResult as Ls, ScriptRun as Lt, AFSpecial_Format as Lu, RenderOptions as M, encodeCode39 as Ma, DocumentDiff as Mc, setLeading as Md, applyHeaderFooter as Mi, encodeOctetString as Ml, CollectionOptions as Mn, JpegMetadata as Mo, StreamingParserOptions as Mr, StrippedFeature as Ms, RangeFetchOptions as Mt, getFieldValue as Mu, rasterize as N, Code128Options as Na, diffSignedContent as Nc, setTextMatrix as Nd, applyHeaderFooterToPage as Ni, encodePrintableString as Nl, CollectionSchemaField as Nn, extractJpegMetadata as No, StreamingPdfParser as Nr, countOccurrences as Ns, RangeFetcher as Nt, resolveFieldReference as Nu, CanvasRenderOptions as O, itfToOperators as Oa, CounterSignatureInfo as Oc, nextLine as Od, UnexpectedFieldTypeError as Oi, encodeContextTag as Ol, StitchingFunction as On, TiffIfdEntry as Oo, timestampPlugin as Or, generatePdfAXmp as Os, h as Ot, parseAcrobatDate as Ou, renderPageToImage as P, code128ToOperators as Pa, FieldLockInfo as Pc, setTextRenderingMode as Pd, formatDate as Pi, encodeSequence as Pl, CollectionView as Pn, injectJpegMetadata as Po, PdfDocumentBuilder as Pr, stripProhibitedFeatures as Ps, createRangeFetcher as Pt, setFieldValue as Pu, getComponentDepths as Q, loadWasmModule as Qa, IncrementalSaveOptions as Qc, curveToFinal as Qd, minimalPreset as Qi, generateSquigglyAppearance as Ql, JsonReport as Qn, ProgressInfo as Qo, setPageLabels as Qr, generateZapfDingbatsToUnicodeCmap as Qs, sampleShadingColor as Qt, PdfUaLevel as Qu, DisplayItem as R, BarcodeMatrix as Ra, getFieldLocks as Rc, showTextArray as Rd, OverflowMode as Ri, ByteRangeResult as Rl, ReconstructOptions as Rn, computeImageDpi as Ro, hasInlineWasmData as Rr, buildAfArray as Rs, resolveFallback as Rt, validateFieldValue as Ru, extractFonts as S, ean13ToOperators as Sa, optimizeIncrementalSave as Sc, drawImageXObject as Sd, MissingOnValueCheckError as Si, buildTimestampRequest as Sl, identityTransferFunction as Sn, webpToPng as So, tableToJson as Sr, validatePdfX as Ss, RecordMetadata as St, LinkHighlightMode as Su, ThumbnailOptions as T, encodeEan8 as Ta, buildDssDictionary as Tc, endText as Td, RemovePageFromEmptyDocumentError as Ti, SignatureOptions as Tl, PdfFunctionDef as Tn, getImageFormatName as To, MetadataPluginOptions as Tr, EnforcementAction as Ts, gtsPdfVtVersion as Tt, TextAnnotationIcon as Tu, StrokeItem as U, PdfWorkerOptions as Ua, MdpPermission as Uc, buildSeparationColorSpace as Ud, shrinkFontSize as Ui, prepareForSigning as Ul, buildDocTimeStampDict as Un, parseIccColorSpace as Uo, BatchProgressCallback as Ur, extractXmpMetadata as Us, generateXRechnungCii as Ut, aesEncryptCBC as Uu, ImageItem as V, base64Encode as Va, ModificationViolationType as Vc, showTextWithSpacing as Vd, ellipsisText as Vi, embedSignature as Vl, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as Vn, embedIccProfile as Vo, BatchErrorStrategy as Vr, XmpIssue as Vs, XRechnungOptions as Vt, sha512 as Vu, SubPath as W, RuntimeKind as Wa, buildDocMdpReference as Wc, circlePath as Wd, truncateText as Wi, decodeJpeg2000 as Wl, CalGrayParams as Wn, parseIccDescription as Wo, BatchResult as Wr, parseXmpMetadata as Ws, PdfA4ExtensionProperty as Wt, rc4 as Wu, layoutTextFlow as X, isWasmDisabled as Xa, AppendOptions as Xc, closePath as Xd, applyTablePreset as Xi, generateLineAppearance as Xl, labToRgb as Xn, ImageOptimizeEntry as Xo, getPageLabels as Xr, generateSymbolToUnicodeCmap as Xs, FunctionShadingOptions as Xt, PdfUaEnforcementResult as Xu, layoutParagraph as Y, instantiateWasmModuleStreaming as Ya, validateSignatureChain as Yc, closeFillEvenOddAndStroke as Yd, applyPreset as Yi, generateInkAppearance as Yl, buildLab as Yn, BatchOptimizeOptions as Yo, PageLabelStyle as Yr, isValidLevel as Ys, pdfA4Rules as Yt, verifyUserPassword as Yu, downscale16To8 as Z, isWasmModuleCached as Za, IncrementalObject as Zc, curveTo as Zd, borderedPreset as Zi, generateSquareAppearance as Zl, DEFAULT_SARIF_TOOL_NAME as Zn, OptimizationReport as Zo, removePageLabels as Zr, generateWinAnsiToUnicodeCmap as Zs, buildFunctionShading as Zt, PdfUaError as Zu, DiffResult as _, encodeDataMatrix as _a, isLinearized as _c, createMarkedContentScope as _d, isTrueType as _f, FontNotEmbeddedError as _i, extractCrlUrls as _l, Type1Halftone as _n, canDirectEmbed as _o, buildDPartRoot as _r, RedactionOperatorOptions as _s, TaskRunner as _t, PdfSquigglyAnnotation as _u, TileGrid as a, readEan13 as aa, TransparencyInfo as ac, summarizeIssues as ad, fillEvenOddAndStroke as af, removeBookmark as ai, validateByteRangeIntegrity as al, InvoiceLine as an, decodeTiff as ao, toJsonReport as ar, downscaleImage as as, decodeTileRegion as at, PdfPopupAnnotation as au, ExtractedFont as b, upcAToOperators as ba, computeObjectHash as bc, wrapInMarkedContent as bd, saveDocumentIncremental as bf, InvalidFieldNamePartError as bi, extractOcspUrl as bl, buildType1Halftone as bn, recompressWebP as bo, extractTables as br, buildPdfXOutputIntent as bs, createWorkerPool as bt, FreeTextAlignment as bu, renderPageTile as c, calculateBarcodeDimensions as ca, PdfAIssue as cc, parseXmpMetadata$1 as cd, rectangle as cf, flattenField as ci, validateCertificatePolicy as cl, BoxGeometry as cn, getTiffPageCount as co, NamespaceDef as cr, recompressImage as cs, decodeWoff as ct, PdfStampAnnotation as cu, redactRegions as d, Pdf417Options as da, enforcePdfA as dc, MarkedContentScope as dd, setLineCap as df, BatchProcessingError as di, TrustStore as dl, PdfX6Variant as dn, WebPImage as do, buildNamespacesArray as dr, JpegWasmModule as ds, readWoffHeader as dt, PdfCircleAnnotation as du, stripedPreset as ea, OutputIntentOptions as ec, PdfUaWarning as ed, ellipsePath as ef, BookmarkNode as ei, TrailerInfo as el, didYouMean as en, provideWasmBytes as eo, SarifLog as er, DownscaleOptions as es, offsetSignedToUnsigned as et, generateUnderlineAppearance as eu, ApplyOcrOptions as f, encodePdf417 as fa, validatePdfA as fc, beginArtifact as fd, setLineJoin as ff, CombedTextLayoutError as fi, extractEmbeddedRevocationData as fl, buildBoxDict as fn, decodeWebP as fo, buildPieceInfo as fr, decodeJpegWasm as fs, DeferredSignOptions as ft, PdfLineAnnotation as fu, CompareOptions as g, dataMatrixToOperators as ga, getLinearizationInfo as gc, beginMarkedContentWithProperties as gd, isOpenTypeCFF as gf, FieldExistsAsNonTerminalError as gi, downloadCrl as gl, STANDARD_SPOT_FUNCTIONS as gn, DirectEmbedResult as go, DocumentPart as gr, OverlayAlignment as gs, signDeferred as gt, PdfHighlightAnnotation as gu, applyOcr as h, DataMatrixResult as ha, delinearizePdf as hc, beginMarkedContentSequence as hd, stroke as hf, FieldAlreadyExistsError as hi, validateCertificateChain as hl, validateBoxGeometry as hn, DirectEmbedOptions as ho, buildRequirements as hr, isJpegWasmReady as hs, SignatureAlgorithm as ht, PdfSquareAnnotation as hu, RenderCache as i, readCode39 as ia, TransparencyFinding as ic, isAccessible as id, fillEvenOdd as if, removeAllBookmarks as ii, saveIncrementalWithSignaturePreservation as il, Invoice as in, TiffImage as io, ValidationLevel as ir, RecompressOptions as is, decodeTile as it, PdfCaretAnnotation as iu, RasterImage as j, computeCode39CheckDigit as ja, DiffEntry as jc, setFontSize as jd, HeaderFooterPosition as ji, encodeOID as jl, markdownToPdf as jn, isCmykTiff as jo, StreamingParserEvent as jr, StripResult as js, FetchLikeResponse as jt, createSandbox as ju, renderDisplayListToCanvas as k, Code39Options as ka, addCounterSignature as kc, setCharacterSpacing as kd, HeaderFooterContent as ki, encodeInteger as kl, evaluateFunction as kn, convertTiffCmykToRgb as ko, ParsedPage as kr, generatePdfAXmpBytes as ks, renderToPdf as kt, AFNumber_Format as ku, RedactRect as l, renderStyledBarcode as la, PdfALevel as lc, PdfStreamWriter as ld, setDashPattern as lf, flattenFields as li, validateExtendedKeyUsage as ll, PdfRect as ln, isTiff as lo, PDF2_NAMESPACE as lr, ChromaSubsampling as ls, isWoff as lt, StandardStampName as lu, OcrWord as m, DataMatrixOptions as ma, LinearizationOptions as mc, beginMarkedContent as md, setMiterLimit as mf, ExceededMaxLengthError as mi, buildCertificateChain as ml, buildPdfX6OutputIntent as mn, isWebPLossless as mo, buildRequirement as mr, initJpegWasm as ms, ExternalSigner as mt, PdfPolygonAnnotation as mu, index_d_exports as n, readBarcode as na, SRGB_ICC_PROFILE as nc, validatePdfUa as nd, fill as nf, addBookmark as ni, findExistingSignatures as nl, renderCodeFrame as nn, IfdEntry as no, SarifRun as nr, OptimizeResult as ns, upscale8To16 as nt, PdfFileAttachmentAnnotation as nu, TileOptions as o, readEan8 as oa, detectTransparency as oc, buildXmpMetadata as od, lineTo as of, FlattenFormResult as oi, verifySignatureDetailed as ol, InvoiceParty as on, decodeTiffAll as oo, toSarif as or, estimateJpegQuality as os, parseTileInfo as ot, PdfRedactAnnotation as ou, OcrEngine as p, pdf417ToOperators as pa, LinearizationInfo as pc, beginArtifactWithType as pd, setLineWidth as pf, EncryptedPdfError as pi, verifyOfflineRevocation as pl, buildGtsPdfxVersion as pn, isWebP as po, RequirementType as pr, encodeJpegWasm as ps, DeferredSignResult as pt, PdfPolyLineAnnotation as pu, findHyphenationPoints as q, configureWasmLoader as qa, SignatureChainEntry as qc, closeAndStroke as qd, PresetOptions as qi, generateFreeTextAppearance as ql, buildCalGray as qn, DeduplicationReport as qo, processBatch as qr, getProfile as qs, PdfA4Options as qt, computeFileEncryptionKey as qu, initWasm as r, readCode128 as ra, generateSrgbIccProfile as rc, checkAccessibility as rd, fillAndStroke as rf, getBookmarks as ri, parseExistingTrailer as rl, FacturXProfile as rn, TiffDecodeOptions as ro, ValidationFinding as rr, RawImageData as rs, assembleTiles as rt, CaretSymbol as ru, computeTileGrid as s, StyledBarcodeOptions as sa, flattenTransparency as sc, createXmpStream as sd, moveTo as sf, FlattenOptions as si, EKU_OIDS as sl, generateCiiXml as sn, decodeTiffPage as so, MATHML_NAMESPACE as sr, optimizeImage as ss, WoffInfo as st, PdfInkAnnotation as su, InitWasmOptions as t, BarcodeReadResult as ta, buildOutputIntent as tc, enforcePdfUa as td, endPath as tf, BookmarkRef as ti, appendIncrementalUpdate as tl, levenshtein as tn, resetWasmLoader as to, SarifResult as tr, ImageOptimizeOptions as ts, summarizeBitDepth as tt, FileAttachmentIcon as tu, RedactResult as u, Pdf417Matrix as ua, PdfAValidationResult as uc, PDFOperator as ud, setFlatness as uf, flattenForm as ui, validateKeyUsage as ul, PdfX6Options as un, parseTiffIfd as uo, buildNamespace as ur, JpegDecodeResult as us, isWoff2 as ut, LineEndingStyle as uu, compareImages as v, calculateUpcCheckDigit as va, linearizePdf as vc, endArtifact as vd, ChangeTracker as vf, ForeignPageError as vi, isCertificateRevoked as vl, buildSampledTransferFunction as vn, embedTiffDirect as vo, ExtractedTable as vr, RedactionResult as vs, WorkerPool as vt, PdfStrikeOutAnnotation as vu, extractImages as w, encodeEan13 as wa, LtvOptions as wc, beginText as wd, PluginError as wi, requestTimestamp as wl, ExponentialFunction as wn, detectImageFormat as wo, accessibilityPlugin as wr, EnforcePdfAResult as ws, buildVtDpm as wt, PdfTextAnnotation as wu, FontFileFormat as x, calculateEanCheckDigit as xa, findChangedObjects as xc, drawImageWithMatrix as xd, saveIncremental as xf, InvalidPageSizeError as xi, TimestampResult as xl, buildType5Halftone as xn, webpToJpeg as xo, tableToCsv as xr, enforcePdfX as xs, PdfVtConformance as xt, PdfFreeTextAnnotation as xu, comparePages as y, encodeUpcA as ya, IncrementalChange as yc, endMarkedContent as yd, IncrementalSaveResult as yf, InvalidColorError as yi, checkCertificateStatus as yl, buildThresholdHalftone as yn, encodePngFromPixels as yo, TableExtractOptions as yr, applyRedaction as ys, WorkerPoolOptions as yt, PdfUnderlineAnnotation as yu, DisplayList as z, BarcodeOptions as za, ModificationReport as zc, showTextHex as zd, OverflowResult as zi, PrepareAppearanceOptions as zl, reconstructLines as zn, computeTargetDimensions as zo, isValidModuleName as zr, createAssociatedFile as zs, splitByScript as zt, sha256 as zu };
10745
+ //# sourceMappingURL=index--7OpQy6B.d.cts.map