modern-pdf-lib 0.36.0 → 0.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/browser.cjs +15 -1
- package/dist/browser.d.cts +2 -2
- package/dist/browser.d.mts +2 -2
- package/dist/browser.mjs +2 -2
- package/dist/{index-06FgCx99.d.cts → index-BnS4WpNK.d.cts} +399 -3
- package/dist/index-BnS4WpNK.d.cts.map +1 -0
- package/dist/{index-Bg3y1BTk.d.mts → index-n0WBuf3b.d.mts} +399 -3
- package/dist/index-n0WBuf3b.d.mts.map +1 -0
- package/dist/index.cjs +15 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +2 -2
- package/dist/{src-MIBq9xGq.cjs → src-CbPUzRbg.cjs} +958 -15
- package/dist/{src-4wfgzZvz.mjs → src-DGxzt-jG.mjs} +875 -16
- package/package.json +1 -1
- package/dist/index-06FgCx99.d.cts.map +0 -1
- package/dist/index-Bg3y1BTk.d.mts.map +0 -1
|
@@ -10714,6 +10714,402 @@ declare function parseColorFont(fontData: Uint8Array): ColorFontInfo;
|
|
|
10714
10714
|
*/
|
|
10715
10715
|
declare function getColorGlyphLayers(fontData: Uint8Array, glyphId: number, paletteIndex?: number): ColorGlyphLayer[];
|
|
10716
10716
|
//#endregion
|
|
10717
|
+
//#region src/core/meshShading.d.ts
|
|
10718
|
+
/** Allowed widths for /BitsPerCoordinate (ISO 32000-2 §8.7.4.5.5, Table 84). */
|
|
10719
|
+
type BitsPerCoordinate = 8 | 16 | 24 | 32;
|
|
10720
|
+
/** Allowed widths for /BitsPerComponent (ISO 32000-2 §8.7.4.5.5, Table 84). */
|
|
10721
|
+
type BitsPerComponent = 8 | 16;
|
|
10722
|
+
/** Allowed widths for /BitsPerFlag (ISO 32000-2 §8.7.4.5.5, Table 84). */
|
|
10723
|
+
type BitsPerFlag = 2 | 8;
|
|
10724
|
+
/**
|
|
10725
|
+
* A single mesh vertex.
|
|
10726
|
+
*
|
|
10727
|
+
* `color` holds the **decoded** colour: either `n` components in the shading's
|
|
10728
|
+
* /ColorSpace, or a single parametric value `t` when the shading carries a
|
|
10729
|
+
* /Function. Coordinates are decoded user-space values, mapped through /Decode
|
|
10730
|
+
* at pack time.
|
|
10731
|
+
*/
|
|
10732
|
+
interface MeshVertex {
|
|
10733
|
+
/** Decoded x coordinate (mapped through /Decode `[xmin xmax]`). */
|
|
10734
|
+
x: number;
|
|
10735
|
+
/** Decoded y coordinate (mapped through /Decode `[ymin ymax]`). */
|
|
10736
|
+
y: number;
|
|
10737
|
+
/** Decoded colour: `n` components, or one parametric value `t`. */
|
|
10738
|
+
color: number[];
|
|
10739
|
+
}
|
|
10740
|
+
/**
|
|
10741
|
+
* A free-form (type 4) triangle: an ordered list of flagged vertices.
|
|
10742
|
+
*
|
|
10743
|
+
* Each vertex carries an edge flag (ISO 32000-2 §8.7.4.5.5, Table 85):
|
|
10744
|
+
* - `0` — starts a new (independent) triangle; must be followed by two more
|
|
10745
|
+
* flag-0 vertices.
|
|
10746
|
+
* - `1` — shares the (vb, vc) edge of the previous triangle.
|
|
10747
|
+
* - `2` — shares the (va, vc) edge of the previous triangle.
|
|
10748
|
+
*
|
|
10749
|
+
* A `triangles` entry need not literally be three vertices: callers may emit a
|
|
10750
|
+
* run of flagged vertices that the consumer assembles into triangles. The
|
|
10751
|
+
* builder simply packs the vertices in order.
|
|
10752
|
+
*/
|
|
10753
|
+
interface FreeFormTriangle {
|
|
10754
|
+
/** One or more flagged vertices, packed in order. */
|
|
10755
|
+
vertices: [FlaggedVertex, ...FlaggedVertex[]];
|
|
10756
|
+
}
|
|
10757
|
+
/** A {@link MeshVertex} carrying a type-4 edge flag (0, 1 or 2). */
|
|
10758
|
+
type FlaggedVertex = MeshVertex & {
|
|
10759
|
+
flag: number;
|
|
10760
|
+
};
|
|
10761
|
+
/**
|
|
10762
|
+
* A Coons patch (type 6) record (ISO 32000-2 §8.7.4.5.7).
|
|
10763
|
+
*
|
|
10764
|
+
* `flag` selects the record shape:
|
|
10765
|
+
* - `0` — new patch: `points` = 12 control points, `colors` = 4 corner colours.
|
|
10766
|
+
* - `1`–`3` — shared edge: `points` = 8 control points, `colors` = 2 colours.
|
|
10767
|
+
*/
|
|
10768
|
+
interface CoonsPatch {
|
|
10769
|
+
/** Edge flag 0–3. */
|
|
10770
|
+
flag: number;
|
|
10771
|
+
/** Control points as `[x, y]` pairs (12 for flag 0, 8 for flags 1–3). */
|
|
10772
|
+
points: [number, number][];
|
|
10773
|
+
/** Corner colours (4 for flag 0, 2 for flags 1–3). */
|
|
10774
|
+
colors: number[][];
|
|
10775
|
+
}
|
|
10776
|
+
/**
|
|
10777
|
+
* A tensor-product patch (type 7) record (ISO 32000-2 §8.7.4.5.8).
|
|
10778
|
+
*
|
|
10779
|
+
* `flag` selects the record shape:
|
|
10780
|
+
* - `0` — new patch: `points` = 16 control points, `colors` = 4 corner colours.
|
|
10781
|
+
* - `1`–`3` — shared edge: `points` = 12 control points, `colors` = 2 colours.
|
|
10782
|
+
*/
|
|
10783
|
+
interface TensorPatch {
|
|
10784
|
+
/** Edge flag 0–3. */
|
|
10785
|
+
flag: number;
|
|
10786
|
+
/** Control points as `[x, y]` pairs (16 for flag 0, 12 for flags 1–3). */
|
|
10787
|
+
points: [number, number][];
|
|
10788
|
+
/** Corner colours (4 for flag 0, 2 for flags 1–3). */
|
|
10789
|
+
colors: number[][];
|
|
10790
|
+
}
|
|
10791
|
+
/**
|
|
10792
|
+
* Keys common to every mesh shading dictionary
|
|
10793
|
+
* (ISO 32000-2 §8.7.4.5.5, Table 84).
|
|
10794
|
+
*/
|
|
10795
|
+
interface MeshShadingCommon {
|
|
10796
|
+
/** The shading colour space (name or array, e.g. an ICCBased ref array). */
|
|
10797
|
+
colorSpace: PdfName | PdfArray;
|
|
10798
|
+
/** Bits used per coordinate value: 8, 16, 24 or 32. */
|
|
10799
|
+
bitsPerCoordinate: BitsPerCoordinate;
|
|
10800
|
+
/** Bits used per colour component: 8 or 16. */
|
|
10801
|
+
bitsPerComponent: BitsPerComponent;
|
|
10802
|
+
/**
|
|
10803
|
+
* Bits used per edge flag: 2 or 8. Required for types 4, 6 and 7; ignored for
|
|
10804
|
+
* type 5 (which has no flags).
|
|
10805
|
+
*/
|
|
10806
|
+
bitsPerFlag: BitsPerFlag;
|
|
10807
|
+
/**
|
|
10808
|
+
* The /Decode array `[xmin xmax ymin ymax c1min c1max …]`, or
|
|
10809
|
+
* `[xmin xmax ymin ymax tmin tmax]` when {@link MeshShadingCommon.function}
|
|
10810
|
+
* is present.
|
|
10811
|
+
*/
|
|
10812
|
+
decode: number[];
|
|
10813
|
+
/**
|
|
10814
|
+
* Optional colour /Function. When present, each vertex/corner colour is a
|
|
10815
|
+
* single parametric value `t`; otherwise it is `n` components.
|
|
10816
|
+
*/
|
|
10817
|
+
function?: PdfDict | PdfArray | undefined;
|
|
10818
|
+
}
|
|
10819
|
+
/** Options for {@link buildFreeFormGouraudShading}. */
|
|
10820
|
+
interface FreeFormGouraudOptions extends MeshShadingCommon {
|
|
10821
|
+
/** Triangle runs whose flagged vertices are packed in order. */
|
|
10822
|
+
triangles: FreeFormTriangle[];
|
|
10823
|
+
}
|
|
10824
|
+
/**
|
|
10825
|
+
* Build a free-form Gouraud-shaded triangle mesh shading
|
|
10826
|
+
* (ISO 32000-2 §8.7.4.5.5, /ShadingType 4).
|
|
10827
|
+
*
|
|
10828
|
+
* Each vertex is packed as `flag · x · y · colour[n]`, MSB-first, with the flag
|
|
10829
|
+
* `bitsPerFlag` wide.
|
|
10830
|
+
*
|
|
10831
|
+
* @param options - the common mesh keys plus the triangle/vertex data.
|
|
10832
|
+
* @returns a {@link PdfStream} whose dict has /ShadingType 4 and whose body is
|
|
10833
|
+
* the packed vertex stream.
|
|
10834
|
+
*/
|
|
10835
|
+
declare function buildFreeFormGouraudShading(options: FreeFormGouraudOptions): PdfStream;
|
|
10836
|
+
/** Options for {@link buildLatticeFormGouraudShading}. */
|
|
10837
|
+
interface LatticeFormGouraudOptions extends Omit<MeshShadingCommon, "bitsPerFlag"> {
|
|
10838
|
+
/** Number of vertices in each row of the lattice (≥ 2). */
|
|
10839
|
+
verticesPerRow: number;
|
|
10840
|
+
/** All vertices in row-major order (no flags). */
|
|
10841
|
+
vertices: MeshVertex[];
|
|
10842
|
+
}
|
|
10843
|
+
/**
|
|
10844
|
+
* Build a lattice-form Gouraud-shaded triangle mesh shading
|
|
10845
|
+
* (ISO 32000-2 §8.7.4.5.6, /ShadingType 5).
|
|
10846
|
+
*
|
|
10847
|
+
* Vertices carry **no** flag; the mesh topology is implied by /VerticesPerRow.
|
|
10848
|
+
* Each vertex is packed as `x · y · colour[n]`, MSB-first.
|
|
10849
|
+
*
|
|
10850
|
+
* @param options - the common mesh keys (sans /BitsPerFlag) plus
|
|
10851
|
+
* /VerticesPerRow and the row-major vertex list.
|
|
10852
|
+
* @returns a {@link PdfStream} with /ShadingType 5 and /VerticesPerRow.
|
|
10853
|
+
*/
|
|
10854
|
+
declare function buildLatticeFormGouraudShading(options: LatticeFormGouraudOptions): PdfStream;
|
|
10855
|
+
/** Options for {@link buildCoonsPatchShading}. */
|
|
10856
|
+
interface CoonsPatchOptions extends MeshShadingCommon {
|
|
10857
|
+
/** Coons patches packed in order. */
|
|
10858
|
+
patches: CoonsPatch[];
|
|
10859
|
+
}
|
|
10860
|
+
/**
|
|
10861
|
+
* Build a Coons patch mesh shading
|
|
10862
|
+
* (ISO 32000-2 §8.7.4.5.7, /ShadingType 6).
|
|
10863
|
+
*
|
|
10864
|
+
* Each patch is packed as `flag · points · colours`. A flag-0 patch carries 12
|
|
10865
|
+
* control points and 4 corner colours; flags 1–3 carry 8 control points and 2
|
|
10866
|
+
* colours (the rest are inherited from the shared edge of the previous patch).
|
|
10867
|
+
*
|
|
10868
|
+
* @param options - the common mesh keys plus the patch list.
|
|
10869
|
+
* @returns a {@link PdfStream} with /ShadingType 6.
|
|
10870
|
+
*/
|
|
10871
|
+
declare function buildCoonsPatchShading(options: CoonsPatchOptions): PdfStream;
|
|
10872
|
+
/** Options for {@link buildTensorPatchShading}. */
|
|
10873
|
+
interface TensorPatchOptions extends MeshShadingCommon {
|
|
10874
|
+
/** Tensor-product patches packed in order. */
|
|
10875
|
+
patches: TensorPatch[];
|
|
10876
|
+
}
|
|
10877
|
+
/**
|
|
10878
|
+
* Build a tensor-product patch mesh shading
|
|
10879
|
+
* (ISO 32000-2 §8.7.4.5.8, /ShadingType 7).
|
|
10880
|
+
*
|
|
10881
|
+
* Identical packing to type 6 but a flag-0 patch carries 16 control points (the
|
|
10882
|
+
* 4 internal tensor points in addition to the 12 boundary points) plus 4 corner
|
|
10883
|
+
* colours; flags 1–3 carry 12 control points and 2 colours.
|
|
10884
|
+
*
|
|
10885
|
+
* @param options - the common mesh keys plus the patch list.
|
|
10886
|
+
* @returns a {@link PdfStream} with /ShadingType 7.
|
|
10887
|
+
*/
|
|
10888
|
+
declare function buildTensorPatchShading(options: TensorPatchOptions): PdfStream;
|
|
10889
|
+
//#endregion
|
|
10890
|
+
//#region src/color/iccTransform.d.ts
|
|
10891
|
+
/**
|
|
10892
|
+
* @module color/iccTransform
|
|
10893
|
+
*
|
|
10894
|
+
* Apply an ICC profile's **matrix/TRC** colour model to transform device
|
|
10895
|
+
* colour into the Profile Connection Space (PCS), for the common
|
|
10896
|
+
* RGB-display and grayscale cases, plus the CIE L\*a\*b\* conversion.
|
|
10897
|
+
*
|
|
10898
|
+
* Two ICC profile shapes can describe a display/input transform:
|
|
10899
|
+
*
|
|
10900
|
+
* - **Matrix/TRC** — three (RGB) or one (gray) one-dimensional tone-response
|
|
10901
|
+
* curves followed by a 3×3 colorant matrix. This is what virtually every
|
|
10902
|
+
* monitor (`mntr`) RGB profile and most gray profiles use. This module
|
|
10903
|
+
* implements exactly this model.
|
|
10904
|
+
* - **LUT-based** — `mft1`/`mft2` (`lut8`/`lut16`) or `mAB `/`mBA `
|
|
10905
|
+
* (`lutAtoBType`/`lutBtoAType`) multidimensional tables (A2B0/B2A0 …). These
|
|
10906
|
+
* cannot be evaluated as a matrix/TRC and are explicitly **rejected** rather
|
|
10907
|
+
* than silently mis-computed.
|
|
10908
|
+
*
|
|
10909
|
+
* For a matrix/TRC RGB profile the forward device→PCS transform is
|
|
10910
|
+
* (ICC.1:2010 §E.1.1, "RGB Device to PCS"):
|
|
10911
|
+
*
|
|
10912
|
+
* ```
|
|
10913
|
+
* [ X ] [ rX gX bX ] [ TRC_r(r) ]
|
|
10914
|
+
* [ Y ] = [ rY gY bY ] [ TRC_g(g) ]
|
|
10915
|
+
* [ Z ] [ rZ gZ bZ ] [ TRC_b(b) ]
|
|
10916
|
+
* ```
|
|
10917
|
+
*
|
|
10918
|
+
* where the matrix columns are the `rXYZ`/`gXYZ`/`bXYZ` colorant tags and each
|
|
10919
|
+
* `TRC_*` is the linearising tone-response curve from `rTRC`/`gTRC`/`bTRC`
|
|
10920
|
+
* (`kTRC` for gray). The resulting XYZ is **D50-relative**, matching the ICC
|
|
10921
|
+
* PCS reference illuminant (ICC.1:2010 §6.3.4.3, PCS = CIEXYZ relative to D50 =
|
|
10922
|
+
* `[0.9642, 1.0000, 0.8249]`).
|
|
10923
|
+
*
|
|
10924
|
+
* Spec references (ICC.1:2010-12, "Image technology colour management —
|
|
10925
|
+
* Architecture, profile format and data structure"):
|
|
10926
|
+
* - §7.2 profile header layout (version o8, deviceClass o12, colour space
|
|
10927
|
+
* o16, PCS o20).
|
|
10928
|
+
* - §7.3 tag table (o128: u32 count, then 12-byte records {sig, offset, size}).
|
|
10929
|
+
* - §4.2 s15Fixed16Number = signed int32 / 65536.
|
|
10930
|
+
* - §10.6 curveType ('curv': u32 count; 0 = identity, 1 = u8Fixed8 gamma,
|
|
10931
|
+
* n≥2 = uInt16 sampled curve over the domain [0,1]).
|
|
10932
|
+
* - §10.18 parametricCurveType ('para': u16 function type + s15Fixed16 params).
|
|
10933
|
+
* - §10.31 XYZType ('XYZ ': reserved + n × (3 × s15Fixed16)).
|
|
10934
|
+
*
|
|
10935
|
+
* No Buffer — uses `Uint8Array` / `DataView` exclusively.
|
|
10936
|
+
*/
|
|
10937
|
+
/**
|
|
10938
|
+
* Summary of an ICC profile header plus whether it carries a usable
|
|
10939
|
+
* matrix/TRC model.
|
|
10940
|
+
*/
|
|
10941
|
+
interface IccTransformInfo {
|
|
10942
|
+
/**
|
|
10943
|
+
* Raw profile version word from header offset 8 (big-endian u32). For
|
|
10944
|
+
* example `0x02100000` = v2.1, `0x04300000` = v4.3.
|
|
10945
|
+
*/
|
|
10946
|
+
readonly version: number;
|
|
10947
|
+
/** Device class signature from offset 12 (e.g. `'mntr'`, `'prtr'`, `'scnr'`). */
|
|
10948
|
+
readonly deviceClass: string;
|
|
10949
|
+
/** Data colour space signature from offset 16 (e.g. `'RGB '`, `'GRAY'`, `'CMYK'`). */
|
|
10950
|
+
readonly colorSpace: string;
|
|
10951
|
+
/** Profile Connection Space signature from offset 20 (`'XYZ '` or `'Lab '`). */
|
|
10952
|
+
readonly pcs: string;
|
|
10953
|
+
/**
|
|
10954
|
+
* `true` when the profile carries a complete matrix/TRC model:
|
|
10955
|
+
* - RGB: `rXYZ` + `gXYZ` + `bXYZ` and `rTRC` + `gTRC` + `bTRC` all present.
|
|
10956
|
+
* - GRAY: `kTRC` present (the gray-colorant matrix degenerates to the
|
|
10957
|
+
* white point).
|
|
10958
|
+
*/
|
|
10959
|
+
readonly hasMatrixTrc: boolean;
|
|
10960
|
+
}
|
|
10961
|
+
/**
|
|
10962
|
+
* Parse the matrix/TRC-relevant header fields and detect whether the profile
|
|
10963
|
+
* carries a complete matrix/TRC model.
|
|
10964
|
+
*
|
|
10965
|
+
* Reads the 128-byte ICC header (ICC.1:2010 §7.2): version (offset 8),
|
|
10966
|
+
* deviceClass (offset 12), data colour space (offset 16) and PCS (offset 20),
|
|
10967
|
+
* then inspects the tag table (§7.3) for the colorant + TRC tags.
|
|
10968
|
+
*
|
|
10969
|
+
* @param profile - Raw ICC profile bytes.
|
|
10970
|
+
* @returns Parsed {@link IccTransformInfo}.
|
|
10971
|
+
* @throws if the profile is too short to contain a header and tag table.
|
|
10972
|
+
*
|
|
10973
|
+
* @example
|
|
10974
|
+
* ```ts
|
|
10975
|
+
* import { parseIccTransform } from 'modern-pdf-lib';
|
|
10976
|
+
*
|
|
10977
|
+
* const info = parseIccTransform(profileBytes);
|
|
10978
|
+
* if (info.hasMatrixTrc && info.colorSpace === 'RGB ') {
|
|
10979
|
+
* // safe to call deviceRgbToXyz
|
|
10980
|
+
* }
|
|
10981
|
+
* ```
|
|
10982
|
+
*/
|
|
10983
|
+
declare function parseIccTransform(profile: Uint8Array): IccTransformInfo;
|
|
10984
|
+
/**
|
|
10985
|
+
* Transform a device colour through a **matrix/TRC** ICC profile into the
|
|
10986
|
+
* D50-relative PCS XYZ.
|
|
10987
|
+
*
|
|
10988
|
+
* For RGB (`colorSpace === 'RGB '`): each channel is linearised through its
|
|
10989
|
+
* `rTRC`/`gTRC`/`bTRC` curve, then multiplied by the colorant matrix whose
|
|
10990
|
+
* columns are the `rXYZ`/`gXYZ`/`bXYZ` tags (ICC.1:2010 §E.1.1).
|
|
10991
|
+
*
|
|
10992
|
+
* For GRAY (`colorSpace === 'GRAY'`): the single value is linearised through
|
|
10993
|
+
* `kTRC` and scaled by the media white point (`wtpt`, defaulting to D50).
|
|
10994
|
+
*
|
|
10995
|
+
* The result is **D50-relative XYZ**, matching the ICC PCS reference
|
|
10996
|
+
* illuminant; feed it directly to {@link xyzToLab} (whose default white point
|
|
10997
|
+
* is D50).
|
|
10998
|
+
*
|
|
10999
|
+
* @param profile - Raw ICC profile bytes.
|
|
11000
|
+
* @param rgb - Device colour in `[0,1]`. For gray profiles only the first
|
|
11001
|
+
* component is used.
|
|
11002
|
+
* @returns PCS XYZ `[X, Y, Z]`, D50-relative.
|
|
11003
|
+
* @throws if the profile is **not** matrix/TRC (i.e. it is LUT-based —
|
|
11004
|
+
* `mft1`/`mft2`/`mAB `/`mBA `), or its colour space is unsupported.
|
|
11005
|
+
*
|
|
11006
|
+
* @example
|
|
11007
|
+
* ```ts
|
|
11008
|
+
* import { deviceRgbToXyz } from 'modern-pdf-lib';
|
|
11009
|
+
*
|
|
11010
|
+
* const xyz = deviceRgbToXyz(srgbProfileBytes, [1, 1, 1]);
|
|
11011
|
+
* // ~ [0.9642, 1.0, 0.8249] (D50 white)
|
|
11012
|
+
* ```
|
|
11013
|
+
*/
|
|
11014
|
+
declare function deviceRgbToXyz(profile: Uint8Array, rgb: [number, number, number]): [number, number, number];
|
|
11015
|
+
/**
|
|
11016
|
+
* Convert PCS XYZ to CIE L\*a\*b\* (CIE 15:2004 §8.2.1 / ICC PCS):
|
|
11017
|
+
*
|
|
11018
|
+
* ```
|
|
11019
|
+
* L* = 116·f(Y/Yn) − 16
|
|
11020
|
+
* a* = 500·(f(X/Xn) − f(Y/Yn))
|
|
11021
|
+
* b* = 200·(f(Y/Yn) − f(Z/Zn))
|
|
11022
|
+
* ```
|
|
11023
|
+
*
|
|
11024
|
+
* with f as in {@link labF}. The default reference white is **D50**
|
|
11025
|
+
* `[0.9642, 1.0000, 0.8249]`, matching the ICC PCS (ICC.1:2010 §6.3.4.3), so
|
|
11026
|
+
* XYZ produced by {@link deviceRgbToXyz} maps straight through.
|
|
11027
|
+
*
|
|
11028
|
+
* @param xyz - XYZ tristimulus, relative to `whitePoint`.
|
|
11029
|
+
* @param whitePoint - Reference white `[Xn, Yn, Zn]`. Defaults to D50.
|
|
11030
|
+
* @returns `[L*, a*, b*]`.
|
|
11031
|
+
*
|
|
11032
|
+
* @example
|
|
11033
|
+
* ```ts
|
|
11034
|
+
* import { xyzToLab } from 'modern-pdf-lib';
|
|
11035
|
+
*
|
|
11036
|
+
* xyzToLab([0.9642, 1.0, 0.8249]); // ~ [100, 0, 0] (D50 white)
|
|
11037
|
+
* ```
|
|
11038
|
+
*/
|
|
11039
|
+
declare function xyzToLab(xyz: [number, number, number], whitePoint?: [number, number, number]): [number, number, number];
|
|
11040
|
+
//#endregion
|
|
11041
|
+
//#region src/color/colorConvert.d.ts
|
|
11042
|
+
/**
|
|
11043
|
+
* Convert device RGB to HSL.
|
|
11044
|
+
*
|
|
11045
|
+
* @param r - Red, 0..1.
|
|
11046
|
+
* @param g - Green, 0..1.
|
|
11047
|
+
* @param b - Blue, 0..1.
|
|
11048
|
+
* @returns `[h, s, l]` with `h` in `[0, 360)`, `s`/`l` in `0..1`.
|
|
11049
|
+
*/
|
|
11050
|
+
declare function rgbToHsl(r: number, g: number, b: number): [number, number, number];
|
|
11051
|
+
/**
|
|
11052
|
+
* Convert HSL to device RGB.
|
|
11053
|
+
*
|
|
11054
|
+
* @param h - Hue in degrees (any real; wrapped into `[0, 360)`).
|
|
11055
|
+
* @param s - Saturation, 0..1.
|
|
11056
|
+
* @param l - Lightness, 0..1.
|
|
11057
|
+
* @returns `[r, g, b]`, each 0..1.
|
|
11058
|
+
*/
|
|
11059
|
+
declare function hslToRgb(h: number, s: number, l: number): [number, number, number];
|
|
11060
|
+
/**
|
|
11061
|
+
* Convert device RGB to HSV.
|
|
11062
|
+
*
|
|
11063
|
+
* @param r - Red, 0..1.
|
|
11064
|
+
* @param g - Green, 0..1.
|
|
11065
|
+
* @param b - Blue, 0..1.
|
|
11066
|
+
* @returns `[h, s, v]` with `h` in `[0, 360)`, `s`/`v` in `0..1`.
|
|
11067
|
+
*/
|
|
11068
|
+
declare function rgbToHsv(r: number, g: number, b: number): [number, number, number];
|
|
11069
|
+
/**
|
|
11070
|
+
* Convert HSV to device RGB.
|
|
11071
|
+
*
|
|
11072
|
+
* @param h - Hue in degrees (any real; wrapped into `[0, 360)`).
|
|
11073
|
+
* @param s - Saturation, 0..1.
|
|
11074
|
+
* @param v - Value, 0..1.
|
|
11075
|
+
* @returns `[r, g, b]`, each 0..1.
|
|
11076
|
+
*/
|
|
11077
|
+
declare function hsvToRgb(h: number, s: number, v: number): [number, number, number];
|
|
11078
|
+
/**
|
|
11079
|
+
* Convert device (sRGB) RGB to CIE XYZ relative to the D65 white point.
|
|
11080
|
+
*
|
|
11081
|
+
* Gamma-expands each channel, then applies the IEC 61966-2-1 sRGB→XYZ D65
|
|
11082
|
+
* matrix. The returned `Y` is `1.0` for input white `(1, 1, 1)`.
|
|
11083
|
+
*
|
|
11084
|
+
* @param r - Red, 0..1.
|
|
11085
|
+
* @param g - Green, 0..1.
|
|
11086
|
+
* @param b - Blue, 0..1.
|
|
11087
|
+
* @returns `[X, Y, Z]` (D65, `Y = 1` for white).
|
|
11088
|
+
*/
|
|
11089
|
+
declare function rgbToXyz(r: number, g: number, b: number): [number, number, number];
|
|
11090
|
+
/**
|
|
11091
|
+
* Convert CIE XYZ (D65) to device (sRGB) RGB.
|
|
11092
|
+
*
|
|
11093
|
+
* Applies the inverse sRGB matrix, then gamma-companding. Results are clamped
|
|
11094
|
+
* to `0..1` to keep them in the displayable device gamut.
|
|
11095
|
+
*
|
|
11096
|
+
* @param x - CIE X (D65).
|
|
11097
|
+
* @param y - CIE Y (D65).
|
|
11098
|
+
* @param z - CIE Z (D65).
|
|
11099
|
+
* @returns `[r, g, b]`, each clamped to 0..1.
|
|
11100
|
+
*/
|
|
11101
|
+
declare function xyzToRgb(x: number, y: number, z: number): [number, number, number];
|
|
11102
|
+
/**
|
|
11103
|
+
* Convert device (sRGB) RGB to CIE L\*a\*b\* via XYZ, using the D65 white
|
|
11104
|
+
* point.
|
|
11105
|
+
*
|
|
11106
|
+
* @param r - Red, 0..1.
|
|
11107
|
+
* @param g - Green, 0..1.
|
|
11108
|
+
* @param b - Blue, 0..1.
|
|
11109
|
+
* @returns `[L, a, b]` with `L ∈ [0, 100]`, `a`/`b` in their natural ranges.
|
|
11110
|
+
*/
|
|
11111
|
+
declare function rgbToLab(r: number, g: number, b: number): [number, number, number];
|
|
11112
|
+
//#endregion
|
|
10717
11113
|
//#region src/render/matrix.d.ts
|
|
10718
11114
|
/**
|
|
10719
11115
|
* @module render/matrix
|
|
@@ -12119,7 +12515,7 @@ declare function parseCiiXml(xml: string): Invoice;
|
|
|
12119
12515
|
*/
|
|
12120
12516
|
declare function detectFacturXProfile(xml: string): FacturXProfile | undefined;
|
|
12121
12517
|
declare namespace index_d_exports {
|
|
12122
|
-
export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, AutoTagOptions, AutoTagResult, AvarSegmentMap, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BidiDirection, BidiResult, BidiRun, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, CertPathResult, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorFontInfo, ColorGlyphLayer, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CounterSignatureInfo, CpalPalette, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeclaredInvoiceTotals, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DiffResult, DirectEmbedOptions, DirectEmbedResult, DisplayItem, DisplayList, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EInvoiceIssue, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPayloadOptions, EncryptedPdfError, EncryptionReport, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXAssembleOptions, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FillItem, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontFileFormat, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageItem, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LIST_NUMBERING_KEY, LabParams, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListNumbering, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, Matrix, MdpPermission, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamedInstance, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, OcrEngine, OcrWord, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageOutputIntentOptions, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUa2Issue, PdfUa2Result, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PermissionFlags, PluginDocument, PluginError, PluginPage, PostScriptFunction, PreflightIssue, PrepareAppearanceOptions, PresetName, PresetOptions, ProfileXmpOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionLeak, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionRegion, RedactionResult, RedactionVerificationReport, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SanitizeClass, SanitizeOptions, SanitizeReport, SarifLog, SarifResult, SarifRun, ScriptRun, SetTitleOptions, SignOptions, SignatureAlgorithm, SignatureAppearanceOptions, SignatureByteRange, SignatureChainEntry, SignatureChainResult, SignatureOptions, SignatureVerificationResult, SignerInfo, SoftMaskBuilder, SoftMaskGroupOptions, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StrokeItem, StructureElementOptions, StructureType, StyledBarcodeOptions, SubPath, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaggedListItem, TaskRunner, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextItem as TextDisplayItem, TextExtractionOptions, TextItem$1 as TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, ThreatFinding, ThreatReport, ThreatSeverity, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidatableInvoice, ValidationFinding, ValidationLevel, VariableFontInfo, VariationAxis, RenderOptions$1 as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, WrapperPayloadOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleFacturX, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, autoTagPage, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertPath, buildCertificateChain, buildCollection, buildColorKeyMask, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFacturXXmp, buildFieldLockDict, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildImageSoftMask, buildInfoDict, buildLab, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfRIdentificationXmp, buildPdfUa2Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildSigningCertificateV2Attribute, buildSoftMaskGroupExtGState, buildSoftMaskNone, buildStencilMask, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildUnencryptedWrapper, buildViewerPreferencesDict, buildVtDpm, buildWtpdfIdentificationXmp, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertPdfAConformanceXmp, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectFacturXProfile, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages$1 as extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages as extractPageImages, extractSigningCertificateV2, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate$1 as formatAcrobatDate, formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getColorGlyphLayers, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, hasInlineWasmData, hasLtvData, hexToColor, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, inspectEncryption, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeAxisCoordinate, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseCiiXml, parseColorFont, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseVariableFont, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preflightPdfA, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, registerEmbeddedFile, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, reorderVisual, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveBidi, resolveFallback, resolveFieldReference, resolveInstanceCoordinates, restoreState, reversePages, rgb, rgbToCmyk, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, sanitizePdf, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, scanPdfThreats, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tagFigure, tagHeading, tagLink, tagList, tagListItem, tagParagraph, tagTable, tagTableDataCell, tagTableHeaderCell, tagTableRow, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateEn16931, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfUa2, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifyRedactions, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText };
|
|
12518
|
+
export { AFDate_FormatEx, AFNumber_Format, AFRelationship, AFSpecial_Format, AccessibilityIssue, AccessibilityPluginOptions, AddBookmarkOptions, AnalysisReport, AnalyzeImagesOptions, Angle, AnnotationFlags, AnnotationOptions, AnnotationType, AppearanceProviderFor, AppendOptions, ApplyOcrOptions, AssociatedFileOptions, AssociatedFileResult, AutoTagOptions, AutoTagResult, AvarSegmentMap, BarcodeMatrix, BarcodeOptions, BarcodeReadResult, BatchErrorStrategy, BatchOptimizeOptions, BatchOptions, BatchProcessingError, BatchProgressCallback, BatchResult, BidiDirection, BidiResult, BidiRun, BitsPerComponent, BitsPerCoordinate, BitsPerFlag, BlendMode, BookmarkNode, BookmarkRef, BoxGeometry, ButtonAppearanceOptions, ByteRangeResult, ByteWriter, CIDFontData, CIDSystemInfoData, CalGrayParams, CalRGBParams, Canvas2DLike, CanvasRenderOptions, CaretSymbol, CatalogOptions, CellContent, CertPathResult, ChangeTracker, CheckboxAppearanceOptions, ChromaSubsampling, CmykColor, Code128Options, Code39Options, CodeFrameOptions, CollectionOptions, CollectionSchemaField, CollectionView, Color, ColorFontInfo, ColorGlyphLayer, ColorStop, CombedTextLayoutError, CompareOptions, ComputeFontSizeOptions, ContentStreamOperator, CoonsPatch, CoonsPatchOptions, CounterSignatureInfo, CpalPalette, CropBox, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE, DEFAULT_SARIF_TOOL_NAME, DataMatrixOptions, DataMatrixResult, DeclaredInvoiceTotals, DeduplicationReport, DeferredSignOptions, DeferredSignResult, Degrees, DeviceNColor, DiffEntry, DiffResult, DirectEmbedOptions, DirectEmbedResult, DisplayItem, DisplayList, DocTimeStampOptions, DocumentDiff, DocumentMetadata, DocumentPart, DocumentStructure, DownscaleOptions, DrawCircleOptions, DrawEllipseOptions, DrawImageOptions, DrawLineOptions, DrawPageOptions, DrawQrCodeOptions, DrawRectangleOptions, DrawSquareOptions, DrawSvgPathOptions, DrawTableOptions, DrawTextOptions, DropdownAppearanceOptions, DssData, EInvoiceIssue, EKU_OIDS, BarcodeOptions as EanOptions, EmbedFontOptions, EmbedPageOptions, EmbeddedFile, EmbeddedFont, EmbeddedPdfPage, EncryptAlgorithm, EncryptDictValues, EncryptOptions, EncryptedPayloadOptions, EncryptedPdfError, EncryptionReport, EnforcePdfAOptions, EnforcePdfAResult, EnforcementAction, ErrorCorrectionLevel, ExceededMaxLengthError, ExponentialFunction, ExternalSigner, ExtractedFont, ExtractedImage, ExtractedTable, FacturXAssembleOptions, FacturXProfile, FallbackFont, FallbackRun, FetchLike, FetchLikeResponse, FieldAlreadyExistsError, FieldExistsAsNonTerminalError, FieldFlags, FieldLockInfo, FieldLockOptions, FieldType, FileAttachmentIcon, FillItem, FlaggedVertex, FlattenFormResult, FlattenOptions, FontDescriptorData, FontEmbeddingResult, FontFileFormat, FontMetrics, FontNotEmbeddedError, FontRef, ForeignPageError, FreeFormGouraudOptions, FreeTextAlignment, FunctionShadingOptions, GradientFill, GrayscaleColor, HeaderFooterContent, HeaderFooterOptions, HeaderFooterPosition, IccProfile, IccTransformInfo, IfdEntry, ImageAlignment, ImageAnalysis, ImageDpi, ImageFormat, ImageInfo, ImageItem, ImageOptimizeEntry, ImageOptimizeOptions, ImageRef, IncrementalChange, IncrementalObject, IncrementalSaveOptions, IncrementalSaveResult, InitWasmOptions, InterpretOptions, InvalidColorError, InvalidFieldNamePartError, InvalidPageSizeError, Invoice, InvoiceLine, InvoiceParty, ItfOptions, JpegDecodeResult, JpegMarkerInfo, JpegMetadata, JpegWasmModule, JsonReport, LIST_NUMBERING_KEY, LabParams, LatticeFormGouraudOptions, LayoutCombedOptions, LayoutMultilineOptions, LayoutMultilineResult, LayoutSinglelineOptions, LayoutSinglelineResult, LineCapStyle, LineEndingStyle, LineJoinStyle, LinearGradientOptions, LinearizationInfo, LinearizationOptions, LinkHighlightMode, ListNumbering, ListboxAppearanceOptions, LoadPdfOptions, LtvOptions, MATHML_NAMESPACE, MarkdownToPdfOptions, MarkedContentScope, Matrix, MdpPermission, MeshShadingCommon, MeshVertex, MetadataPluginOptions, MissingOnValueCheckError, ModificationReport, ModificationViolation, ModificationViolationType, MultiPageTableResult, NamedInstance, NamespaceDef, NestedTableContent, NoSuchFieldError, NormalizedStop, OcrEngine, OcrWord, Operand, OptimizationReport, OptimizeResult, OrderXType, OutlineDestination, OutlineItemOptions, OutputIntentOptions, OverflowMode, OverflowResult, OverlayAlignment, PDF2_NAMESPACE, PDFOperator, PageContent, PageEntry, PageLabelRange, PageLabelStyle, PageOutputIntentOptions, PageRange, PageSize, PageSizes, ParseSpeeds, ParsedPage, ParsedXmpMetadata, PatternFill, Pdf417Matrix, Pdf417Options, PdfA4ExtensionProperty, PdfA4ExtensionSchema, PdfA4Level, PdfA4Options, PdfAIssue, PdfALevel, PdfAProfile, PdfAValidationResult, PdfAXmpOptions, PdfAnnotation, PdfArray, PdfBool, PdfButtonField, PdfCaretAnnotation, PdfCheckboxField, PdfCircleAnnotation, PdfDict, PdfDocument, PdfDocumentBuilder, PdfDropdownField, PdfEncryptionHandler, PdfField, PdfFileAttachmentAnnotation, PdfForm, PdfFreeTextAnnotation, PdfFunctionDef, PdfHighlightAnnotation, PdfInkAnnotation, PdfLayer, PdfLayerManager, PdfLineAnnotation, PdfLinkAnnotation, PdfListboxField, PdfName, PdfNull, PdfNumber, PdfObject, PdfObjectRegistry, PdfOutlineItem, PdfOutlineTree, PdfPage, PdfParseError, PdfPermissionFlags, PdfPlugin, PdfPluginManager, PdfPolyLineAnnotation, PdfPolygonAnnotation, PdfPopupAnnotation, PdfRadioGroup, PdfRect, PdfRedactAnnotation, PdfRef, PdfSaveOptions, PdfSignatureField, PdfSignatureInfo, PdfSquareAnnotation, PdfSquigglyAnnotation, PdfStampAnnotation, PdfStream, PdfStreamWriter, PdfStrikeOutAnnotation, PdfString, PdfStructureElement, PdfStructureTree, PdfTextAnnotation, PdfTextField, PdfUa2Issue, PdfUa2Result, PdfUaEnforcementResult, PdfUaError, PdfUaLevel, PdfUaValidationResult, PdfUaWarning, PdfUnderlineAnnotation, PdfViewerPreferences, PdfVtConformance, PdfWorker, PdfWorkerOptions, PdfWriter, PdfX6Options, PdfX6Variant, PermissionFlags, PluginDocument, PluginError, PluginPage, PostScriptFunction, PreflightIssue, PrepareAppearanceOptions, PresetName, PresetOptions, ProfileXmpOptions, ProgressInfo, QrCodeMatrix, QrCodeOptions, RadialGradientFill, RadialGradientOptions, Radians, RadioAppearanceOptions, RangeFetchOptions, RangeFetcher, RasterImage, RawImageData, RecompressOptions, ReconstructOptions, RedactRect, RedactResult, RedactionLeak, RedactionMark, RedactionOperatorOptions, RedactionOptions, RedactionRegion, RedactionResult, RedactionVerificationReport, RefResolver, RegistryEntry, RemovePageFromEmptyDocumentError, RenderCache, RenderOptions, RequirementType, RgbColor, Rgba, RichTextFieldReadError, RuntimeKind, SARIF_SCHEMA_URI, SRGB_ICC_PROFILE, STANDARD_SPOT_FUNCTIONS, SampledFunction, SanitizeClass, SanitizeOptions, SanitizeReport, SarifLog, SarifResult, SarifRun, ScriptRun, SetTitleOptions, SignOptions, SignatureAlgorithm, SignatureAppearanceOptions, SignatureByteRange, SignatureChainEntry, SignatureChainResult, SignatureOptions, SignatureVerificationResult, SignerInfo, SoftMaskBuilder, SoftMaskGroupOptions, SoftMaskRef, SpotColor, StandardFontName, StandardFonts, StandardStampName, StitchingFunction, StreamingParseError, StreamingParseResult, StreamingParserEvent, StreamingParserOptions, StreamingPdfParser, StripOptions, StripResult, StrippedFeature, StrokeItem, StructureElementOptions, StructureType, StyledBarcodeOptions, SubPath, SubsetCmap, SubsetResult, SvgDrawCommand, SvgElement, SvgGradient, SvgGradientStop, SvgRenderOptions, TableCell, TableColumn, TableExtractOptions, TablePreset, TableRenderResult, TableRow, TaggedListItem, TaskRunner, TensorPatch, TensorPatchOptions, TextAlignment$1 as TextAlignment, TextAnnotationIcon, TextAppearanceOptions, TextItem as TextDisplayItem, TextExtractionOptions, TextItem$1 as TextItem, Line as TextLine, Paragraph as TextParagraph, TextRenderingMode, TextRun, ThreatFinding, ThreatReport, ThreatSeverity, ThumbnailOptions, TiffCmykEmbedResult, TiffDecodeOptions, TiffIfdEntry, TiffImage, TileGrid, TileOptions, TilingPatternOptions, TimestampPluginOptions, TimestampResult, TrailerInfo, TransparencyFinding, TransparencyGroupOptions, TransparencyInfo, TrustStore, Type0FontData, Type1Halftone, UnexpectedFieldTypeError, BarcodeOptions as UpcOptions, VNode, ValidatableInvoice, ValidationFinding, ValidationLevel, VariableFontInfo, VariationAxis, RenderOptions$1 as VdomRenderOptions, ViewerPreferences, VisibleSignatureOptions, RecordMetadata as VtRecordMetadata, WasmLoaderConfig, WasmModuleName, WatermarkOptions, WebPImage, WidgetAnnotationHost, WidthEntry, WoffInfo, WorkerPool, WorkerPoolOptions, WrapperPayloadOptions, XRechnungOptions, XmpIssue, XmpValidationResult, accessibilityPlugin, addBookmark, addCounterSignature, addFieldLock, addVisibilityAction, addWatermark, addWatermarkToPage, aesDecryptCBC, aesEncryptCBC, analyzeImages, analyzeJpegMarkers, annotationFromDict, appendIncrementalUpdate, applyFillColor, applyHeaderFooter, applyHeaderFooterToPage, applyOcr, applyOverflow, applyPreset, applyRedaction, applyRedactions, applySpreadMethod, applyStrokeColor, applyTablePreset, asNumber, asPDFName, asPDFNumber, asPdfName, asPdfNumber, assembleFacturX, assembleTiles, attachAssociatedFiles, attachFile, attachOutputIntents, autoTagPage, base64Decode, base64Encode, batchFlatten, batchMerge, beginArtifact, beginArtifactWithType, beginLayerContent, beginMarkedContent, beginMarkedContentSequence, beginMarkedContentWithProperties, beginText, borderedPreset, buildAfArray, buildAnnotationDict, buildBlackPointCompensationExtGState, buildBoxDict, buildCalGray, buildCalRGB, buildCatalog, buildCertPath, buildCertificateChain, buildCollection, buildColorKeyMask, buildCoonsPatchShading, buildDPartRoot, buildDeviceNColorSpace, buildDocMdpReference, buildDocTimeStampDict, buildDocumentStructure, buildDssDictionary, buildEmbeddedFilesNameTree, buildEncryptedPayload, buildFacturXXmp, buildFieldLockDict, buildFreeFormGouraudShading, buildFunctionShading, buildGradientObjects, buildGtsPdfxVersion, buildImageSoftMask, buildInfoDict, buildLab, buildLatticeFormGouraudShading, buildNamespace, buildNamespacesArray, buildOutputIntent, buildPageOutputIntent, buildPageTree, buildPatternObjects, buildPdfA4Xmp, buildPdfRIdentificationXmp, buildPdfUa2Xmp, buildPdfVtDParts, buildPdfX6OutputIntent, buildPdfXOutputIntent, buildPieceInfo, buildPkcs7Signature, buildRequirement, buildRequirements, buildSampledTransferFunction, buildSeparationColorSpace, buildSigningCertificateV2Attribute, buildSoftMaskGroupExtGState, buildSoftMaskNone, buildStencilMask, buildTensorPatchShading, buildThresholdHalftone, buildTimestampRequest, buildType1Halftone, buildType5Halftone, buildUnencryptedWrapper, buildViewerPreferencesDict, buildVtDpm, buildWtpdfIdentificationXmp, buildXmpMetadata, calculateBarcodeDimensions, calculateEanCheckDigit, calculateUpcCheckDigit, canDirectEmbed, checkAccessibility, checkCertificateStatus, circlePath, clearWasmCache, clipEvenOdd, clip as clipOp, closeAndStroke, closeFillAndStroke, closeFillEvenOddAndStroke, closePath as closePathOp, cmyk, cmykToRgb, code128ToOperators, code39ToOperators, colorToComponents, colorToHex, compareImages, comparePages, componentsToColor, computeCode39CheckDigit, computeFileEncryptionKey, computeFontSize, computeImageDpi, computeObjectHash, computeSignatureHash, computeTargetDimensions, computeTileGrid, concatMatrix, concatMatrix as concatTransformationMatrix, configureWasmLoader, convertPdfAConformanceXmp, convertTiffCmykToRgb, convertToGrayscale, copyPages, countOccurrences, createAnnotation, createAssociatedFile, createMarkedContentScope, createPdf, createRangeFetcher, createSandbox, h as createVNode, createWorkerPool, createXmpStream, cropPage, curveToFinal, curveToInitial, curveTo as curveToOp, dataMatrixToOperators, decodeImageStream, decodeJpeg2000, decodeJpegWasm, decodePermissions, decodeStream, decodeTiff, decodeTiffAll, decodeTiffPage, decodeTile, decodeTileRegion, decodeWebP, decodeWoff, deduplicateImages, degrees, degreesToRadians, delinearizePdf, detectFacturXProfile, detectImageFormat, detectModifications, detectRuntime, detectTransparency, deviceNColor, deviceNResourceName, deviceRgbToXyz, didYouMean, diffSignedContent, downloadCrl, downscale16To8, downscaleImage, drawImageWithMatrix, drawImageXObject, drawXObject as drawObject, drawSvgOnPage, drawXObject, ean13ToOperators, ean8ToOperators, ellipsePath, ellipsisText, embedIccProfile, embedLtvData, embedPageAsFormXObject, embedSignature, embedTiffCmyk, embedTiffDirect, encodeCode128, encodeCode128Values, encodeCode39, encodeContextTag, encodeDataMatrix, encodeEan13, encodeEan8, encodeInteger, encodeItf, encodeJpegWasm, encodeLength, encodeOID, encodeOctetString, encodePdf417, encodePermissions, encodePngFromPixels, encodePrintableString, encodeQrCode, encodeSequence, encodeSet, encodeUTCTime, encodeUpcA, encodeUtf8String, endArtifact, endLayerContent, endMarkedContent, endPath as endPathOp, endText, enforcePdfA, enforcePdfAFull, enforcePdfUa, enforcePdfX, estimateJpegQuality, estimateTextWidth, evaluateFunction, extractCrlUrls, extractEmbeddedRevocationData, extractFonts, extractIccProfile, extractImages$1 as extractImages, extractJpegMetadata, extractMetrics, extractOcspUrl, extractImages as extractPageImages, extractSigningCertificateV2, extractTables, extractText, extractTextWithPositions, extractXmpMetadata, fillAndStroke as fillAndStrokeOp, fillEvenOdd, fillEvenOddAndStroke, fill as fillOp, findChangedObjects, findExistingSignatures, findHyphenationPoints, findSignatures, flattenField, flattenFields, flattenForm, flattenTransparency, formatDate$1 as formatAcrobatDate, formatDate, formatHexContext, formatNumber, formatPdfDate, generateButtonAppearance, generateCheckboxAppearance, generateCiiXml, generateCircleAppearance, generateDropdownAppearance, generateFreeTextAppearance, generateHighlightAppearance, generateInkAppearance, generateLineAppearance, generateListboxAppearance, generateOrderX, generatePdfAXmp, generatePdfAXmpBytes, generateRadioAppearance, generateSignatureAppearance, generateSquareAppearance, generateSquigglyAppearance, generateSrgbIccProfile, generateStrikeOutAppearance, generateSymbolToUnicodeCmap, generateTextAppearance, generateThumbnail, generateUnderlineAppearance, generateWinAnsiToUnicodeCmap, generateXRechnungCii, generateZapfDingbatsToUnicodeCmap, getAttachments, getBookmarks, getCertificationLevel, getColorGlyphLayers, getComponentDepths, getCounterSignatures, getFieldLocks, getFieldValue, getImageFormatName, getInlineWasmBytes, getInlineWasmSize, getLinearizationInfo, getPageLabels, getPageSize, getProfile, getRedactionMarks, getSignatures, getSupportedFormats, getSupportedLevels, getTiffPageCount, getToUnicodeCmap, grayscale, gtsPdfVtVersion, hasInlineWasmData, hasLtvData, hexToColor, hslToRgb, hsvToRgb, identityTransferFunction, initJpegWasm, initWasm, injectJpegMetadata, insertPage, inspectEncryption, instantiateWasmModuleStreaming, interpolateLinearRgb, interpretContentStream, interpretPage, isAccessible, isCertificateRevoked, isCmykTiff, isGrayscaleImage, isJpegWasmReady, isLinearized, isOpenTypeCFF, isTiff, isTrueType, isValidLevel, isValidModuleName, isWasmDisabled, isWasmModuleCached, isWebP, isWebPLossless, isWoff, isWoff2, itfToOperators, labToRgb, layoutColumns, layoutCombedText, layoutMultilineText, layoutParagraph, layoutSinglelineText, layoutTextFlow, levenshtein, lineTo as lineToOp, linearGradient, linearizePdf, loadPdf, loadWasmModule, loadWasmModuleStreaming, markForRedaction, markdownToPdf, md5, mergePdfs, metadataPlugin, minimalPreset, movePage, moveText as moveTextOp, moveTextSetLeading, moveTo as moveToOp, nameHalftone, nextLine as nextLineOp, normalizeAxisCoordinate, normalizeComponentDepth, offsetSignedToUnsigned, optimizeAllImages, optimizeImage, optimizeIncrementalSave, parseAcrobatDate, parseCiiXml, parseColorFont, parseContentStream, parseExistingTrailer, parseIccColorSpace, parseIccDescription, parseIccTransform, parseSvg, parseSvgColor, parseSvgPath, parseSvgTransform, parseTiffIfd, parseTileInfo, parseTimestampResponse, parseVariableFont, parseViewerPreferences, parseXmpMetadata$1 as parseXmpMetadata, parseXmpMetadata as parseXmpPdfAMetadata, pdf417ToOperators, pdfA4Rules, restoreState as popGraphicsState, preflightPdfA, preloadInlineWasm, prepareForSigning, processBatch, professionalPreset, provideWasmBytes, saveState as pushGraphicsState, qrCodeToOperators, radialGradient, radians, radiansToDegrees, rasterize, rc4, readBarcode, readCode128, readCode39, readEan13, readEan8, readWoffHeader, recompressImage, recompressWebP, reconstructLines, reconstructParagraphs, rectangle as rectangleOp, redactRegions, registerEmbeddedFile, removeAllBookmarks, removeBookmark, removePage, removePageLabels, removePages, renderCodeFrame, renderDisplayListToCanvas, renderMultiPageTable, renderPageTile, renderPageToCanvas, renderPageToImage, renderStyledBarcode, renderTable, renderToPdf, reorderVisual, replaceTemplateVariables, requestTimestamp, resetWasmLoader, resizePage, resolveBidi, resolveFallback, resolveFieldReference, resolveInstanceCoordinates, restoreState, reversePages, rgb, rgbToCmyk, rgbToHsl, rgbToHsv, rgbToLab, rgbToXyz, rotateAllPages, rotate as rotateOp, rotatePage, rotationMatrix, sampleShadingColor, sanitizePdf, saveDocumentIncremental, saveIncremental, saveIncrementalWithSignaturePreservation, saveState, scale as scaleOp, scanPdfThreats, searchTextItems, serializePdf, setCertificationLevel, setCharacterSpacing as setCharacterSpacingOp, setCharacterSpacing as setCharacterSqueeze, setColorSpace, setDashPattern as setDashPatternOp, setFieldValue, setFieldVisibility, setFillColor, setFillColorCmyk, setFillColorGray, setFillColorRgb, setFillingColor, setFlatness, setFont as setFontAndSize, setFont as setFontOp, setFontSize as setFontSizeOp, setGraphicsState as setGraphicsStateOp, setLeading as setLeadingOp, setLineCap as setLineCapOp, setLeading as setLineHeight, setLineJoin as setLineJoinOp, setLineWidth as setLineWidthOp, setMiterLimit, setPageLabels, setStrokeColor, setStrokeColorCmyk, setStrokeColorGray, setStrokeColorRgb, setStrokeColorSpace, setStrokingColor, setTextMatrix as setTextMatrixOp, setTextRenderingMode as setTextRenderingModeOp, setTextRise as setTextRiseOp, setWordSpacing as setWordSpacingOp, sha256, sha384, sha512, showTextArray, showTextHex, showTextNextLine, showText as showTextOp, showTextWithSpacing, shrinkFontSize, signDeferred, signPdf, skew as skewOp, splitByScript, splitPdf, spotColor, spotResourceName, stripProhibitedFeatures, stripedPreset, stroke as strokeOp, summarizeBitDepth, summarizeIssues, svgToPdfOperators, tableToCsv, tableToJson, tagFigure, tagHeading, tagLink, tagList, tagListItem, tagParagraph, tagTable, tagTableDataCell, tagTableHeaderCell, tagTableRow, tilingPattern, timestampPlugin, toAlpha, toJsonReport, toRoman, toSarif, translate as translateOp, truncateText, upcAToOperators, upscale8To16, validateBoxGeometry, validateByteRangeIntegrity, validateCertificateChain, validateCertificatePolicy, validateEn16931, validateExtendedKeyUsage, validateFieldValue, validateKeyUsage, validatePdfA, validatePdfUa, validatePdfUa2, validatePdfX, validateSignatureChain, validateXmpMetadata, valuesToModules, verifyOfflineRevocation, verifyOwnerPassword, verifyRedactions, verifySignature, verifySignatureDetailed, verifySignatures, verifyUserPassword, webpToJpeg, webpToPng, wrapInMarkedContent, wrapText, xyzToLab, xyzToRgb };
|
|
12123
12519
|
}
|
|
12124
12520
|
/**
|
|
12125
12521
|
* Options for WASM module initialization.
|
|
@@ -12171,5 +12567,5 @@ interface InitWasmOptions {
|
|
|
12171
12567
|
*/
|
|
12172
12568
|
declare function initWasm(options?: string | URL | InitWasmOptions): Promise<void>;
|
|
12173
12569
|
//#endregion
|
|
12174
|
-
export { attachAssociatedFiles as $, InvalidFieldNamePartError as $a, buildPdfXOutputIntent as $c, TextAnnotationIcon as $d, endText as $f, extractTables as $i, buildDssDictionary as $l, createWorkerPool as $n, upcAToOperators as $o, buildType1Halftone as $r, recompressWebP as $s, normalizeAxisCoordinate as $t, SignatureOptions as $u, tagHeading as A, removePageLabels as Aa, OptimizationReport as Ac, PdfFileAttachmentAnnotation as Ad, validatePdfUa as Af, DEFAULT_SARIF_TOOL_NAME as Ai, SRGB_ICC_PROFILE as Al, downscale16To8 as An, borderedPreset as Ao, fill as Ap, buildFunctionShading as Ar, isWasmModuleCached as As, rasterize as At, findExistingSignatures as Au, buildColorKeyMask as B, FlattenOptions as Ba, optimizeImage as Bc, PdfLineAnnotation as Bd, beginArtifact as Bf, MATHML_NAMESPACE as Bi, validatePdfA as Bl, WoffInfo as Bn, StyledBarcodeOptions as Bo, setLineJoin as Bp, generateCiiXml as Br, decodeTiffPage as Bs, StrokeItem as Bt, extractEmbeddedRevocationData as Bu, PdfUa2Result as C, BatchResult as Ca, parseIccDescription as Cc, generateInkAppearance as Cd, verifyUserPassword as Cf, CalGrayParams as Ci, isValidLevel as Cl, buildCertPath as Cn, truncateText as Co, closeFillEvenOddAndStroke as Cp, PdfA4ExtensionProperty as Cr, RuntimeKind as Cs, generateThumbnail as Ct, validateSignatureChain as Cu, ListNumbering as D, PageLabelRange as Da, deduplicateImages as Dc, generateStrikeOutAppearance as Dd, PdfUaValidationResult as Df, buildCalRGB as Di, getToUnicodeCmap as Dl, layoutColumns as Dn, TablePreset as Do, curveToInitial as Dp, buildPdfA4Xmp as Dr, detectRuntime as Ds, renderPageToCanvas as Dt, SignatureByteRange as Du, LIST_NUMBERING_KEY as E, processBatch as Ea, DeduplicationReport as Ec, generateSquigglyAppearance as Ed, PdfUaLevel as Ef, buildCalGray as Ei, generateZapfDingbatsToUnicodeCmap as El, findHyphenationPoints as En, PresetOptions as Eo, curveToFinal as Ep, PdfA4Options as Er, configureWasmLoader as Es, renderDisplayListToCanvas as Et, IncrementalSaveOptions as Eu, tagTable as F, addBookmark as Fa, OptimizeResult as Fc, PdfInkAnnotation as Fd, createXmpStream as Ff, SarifRun as Fi, flattenTransparency as Fl, upscale8To16 as Fn, readBarcode as Fo, moveTo as Fp, renderCodeFrame as Fr, IfdEntry as Fs, DisplayItem as Ft, EKU_OIDS as Fu, buildSoftMaskNone as G, CombedTextLayoutError as Ga, decodeJpegWasm as Gc, PdfSquigglyAnnotation as Gd, createMarkedContentScope as Gf, buildPieceInfo as Gi, isLinearized as Gl, DeferredSignOptions as Gn, encodePdf417 as Go, isTrueType as Gp, buildBoxDict as Gr, decodeWebP as Gs, ColorGlyphLayer as Gt, extractCrlUrls as Gu, buildStencilMask as H, flattenFields as Ha, ChromaSubsampling as Hc, PdfPolygonAnnotation as Hd, beginMarkedContent as Hf, PDF2_NAMESPACE as Hi, LinearizationOptions as Hl, isWoff as Hn, renderStyledBarcode as Ho, setMiterLimit as Hp, PdfRect as Hr, isTiff as Hs, TextItem as Ht, buildCertificateChain as Hu, tagTableDataCell as I, getBookmarks as Ia, RawImageData as Ic, PdfStampAnnotation as Id, parseXmpMetadata$1 as If, ValidationFinding as Ii, PdfAIssue as Il, assembleTiles as In, readCode128 as Io, rectangle as Ip, FacturXProfile as Ir, TiffDecodeOptions as Is, DisplayList as It, validateCertificatePolicy as Iu, buildEncryptedPayload as J, FieldAlreadyExistsError as Ja, isJpegWasmReady as Jc, FreeTextAlignment as Jd, wrapInMarkedContent as Jf, buildRequirements as Ji, computeObjectHash as Jl, SignatureAlgorithm as Jn, DataMatrixResult as Jo, saveDocumentIncremental as Jp, validateBoxGeometry as Jr, DirectEmbedOptions as Js, parseColorFont as Jt, extractOcspUrl as Ju, EncryptedPayloadOptions as K, EncryptedPdfError as Ka, encodeJpegWasm as Kc, PdfStrikeOutAnnotation as Kd, endArtifact as Kf, RequirementType as Ki, linearizePdf as Kl, DeferredSignResult as Kn, pdf417ToOperators as Ko, ChangeTracker as Kp, buildGtsPdfxVersion as Kr, isWebP as Ks, CpalPalette as Kt, isCertificateRevoked as Ku, tagTableHeaderCell as L, removeAllBookmarks as La, RecompressOptions as Lc, StandardStampName as Ld, PdfStreamWriter as Lf, ValidationLevel as Li, PdfALevel as Ll, decodeTile as Ln, readCode39 as Lo, setDashPattern as Lp, Invoice as Lr, TiffImage as Ls, FillItem as Lt, validateExtendedKeyUsage as Lu, tagList as M, AddBookmarkOptions as Ma, optimizeAllImages as Mc, PdfCaretAnnotation as Md, isAccessible as Mf, SARIF_SCHEMA_URI as Mi, TransparencyFinding as Ml, normalizeComponentDepth as Mn, professionalPreset as Mo, fillEvenOdd as Mp, CodeFrameOptions as Mr, loadWasmModuleStreaming as Ms, InterpretOptions as Mt, saveIncrementalWithSignaturePreservation as Mu, tagListItem as N, BookmarkNode as Na, DownscaleOptions as Nc, PdfPopupAnnotation as Nd, summarizeIssues as Nf, SarifLog as Ni, TransparencyInfo as Nl, offsetSignedToUnsigned as Nn, stripedPreset as No, fillEvenOddAndStroke as Np, didYouMean as Nr, provideWasmBytes as Ns, interpretContentStream as Nt, validateByteRangeIntegrity as Nu, TaggedListItem as O, PageLabelStyle as Oa, BatchOptimizeOptions as Oc, generateUnderlineAppearance as Od, PdfUaWarning as Of, buildLab as Oi, OutputIntentOptions as Ol, layoutParagraph as On, applyPreset as Oo, ellipsePath as Op, pdfA4Rules as Or, instantiateWasmModuleStreaming as Os, RasterImage as Ot, TrailerInfo as Ou, tagParagraph as P, BookmarkRef as Pa, ImageOptimizeOptions as Pc, PdfRedactAnnotation as Pd, buildXmpMetadata as Pf, SarifResult as Pi, detectTransparency as Pl, summarizeBitDepth as Pn, BarcodeReadResult as Po, lineTo as Pp, levenshtein as Pr, resetWasmLoader as Ps, interpretPage as Pt, verifySignatureDetailed as Pu, buildPageOutputIntent as Q, InvalidColorError as Qa, applyRedaction as Qc, PdfTextAnnotation as Qd, beginText as Qf, TableExtractOptions as Qi, LtvOptions as Ql, WorkerPoolOptions as Qn, encodeUpcA as Qo, buildThresholdHalftone as Qr, encodePngFromPixels as Qs, VariationAxis as Qt, requestTimestamp as Qu, tagTableRow as R, removeBookmark as Ra, downscaleImage as Rc, LineEndingStyle as Rd, PDFOperator as Rf, toJsonReport as Ri, PdfAValidationResult as Rl, decodeTileRegion as Rn, readEan13 as Ro, setFlatness as Rp, InvoiceLine as Rr, decodeTiff as Rs, ImageItem as Rt, validateKeyUsage as Ru, PdfUa2Issue as S, BatchProgressCallback as Sa, parseIccColorSpace as Sc, generateHighlightAppearance as Sd, verifyOwnerPassword as Sf, buildDocTimeStampDict as Si, getSupportedLevels as Sl, CertPathResult as Sn, shrinkFontSize as So, closeFillAndStroke as Sp, generateXRechnungCii as Sr, PdfWorkerOptions as Ss, ThumbnailOptions as St, SignatureChainResult as Su, validatePdfUa2 as T, batchMerge as Ta, isGrayscaleImage as Tc, generateSquareAppearance as Td, PdfUaError as Tf, LabParams as Ti, generateWinAnsiToUnicodeCmap as Tl, extractSigningCertificateV2 as Tn, PresetName as To, curveTo as Tp, PdfA4Level as Tr, clearWasmCache as Ts, CanvasRenderOptions as Tt, IncrementalObject as Tu, SoftMaskGroupOptions as U, flattenForm as Ua, JpegDecodeResult as Uc, PdfSquareAnnotation as Ud, beginMarkedContentSequence as Uf, buildNamespace as Ui, delinearizePdf as Ul, isWoff2 as Un, Pdf417Matrix as Uo, stroke as Up, PdfX6Options as Ur, parseTiffIfd as Us, Matrix as Ut, validateCertificateChain as Uu, buildImageSoftMask as V, flattenField as Va, recompressImage as Vc, PdfPolyLineAnnotation as Vd, beginArtifactWithType as Vf, NamespaceDef as Vi, LinearizationInfo as Vl, decodeWoff as Vn, calculateBarcodeDimensions as Vo, setLineWidth as Vp, BoxGeometry as Vr, getTiffPageCount as Vs, SubPath as Vt, verifyOfflineRevocation as Vu, buildSoftMaskGroupExtGState as W, BatchProcessingError as Wa, JpegWasmModule as Wc, PdfHighlightAnnotation as Wd, beginMarkedContentWithProperties as Wf, buildNamespacesArray as Wi, getLinearizationInfo as Wl, readWoffHeader as Wn, Pdf417Options as Wo, isOpenTypeCFF as Wp, PdfX6Variant as Wr, WebPImage as Ws, ColorFontInfo as Wt, downloadCrl as Wu, PageOutputIntentOptions as X, FontNotEmbeddedError as Xa, RedactionOperatorOptions as Xc, LinkHighlightMode as Xd, drawImageXObject as Xf, buildDPartRoot as Xi, optimizeIncrementalSave as Xl, TaskRunner as Xn, encodeDataMatrix as Xo, Type1Halftone as Xr, canDirectEmbed as Xs, NamedInstance as Xt, buildTimestampRequest as Xu, buildUnencryptedWrapper as Y, FieldExistsAsNonTerminalError as Ya, OverlayAlignment as Yc, PdfFreeTextAnnotation as Yd, drawImageWithMatrix as Yf, DocumentPart as Yi, findChangedObjects as Yl, signDeferred as Yn, dataMatrixToOperators as Yo, saveIncremental as Yp, STANDARD_SPOT_FUNCTIONS as Yr, DirectEmbedResult as Ys, AvarSegmentMap as Yt, TimestampResult as Yu, attachOutputIntents as Z, ForeignPageError as Za, RedactionResult as Zc, PdfLinkAnnotation as Zd, drawXObject as Zf, ExtractedTable as Zi, DssData as Zl, WorkerPool as Zn, calculateUpcCheckDigit as Zo, buildSampledTransferFunction as Zr, embedTiffDirect as Zs, VariableFontInfo as Zt, parseTimestampResponse as Zu, convertPdfAConformanceXmp as _, hasInlineWasmData as _a, computeImageDpi as _c, prepareForSigning as _d, aesEncryptCBC as _f, ReconstructOptions as _i, extractXmpMetadata as _l, sanitizePdf as _n, OverflowMode as _o, buildSeparationColorSpace as _p, resolveFallback as _r, BarcodeMatrix as _s, ExtractedFont as _t, MdpPermission as _u, parseCiiXml as a, metadataPlugin as aa, getSupportedFormats as ac, encodeOID as ad, createSandbox as af, PostScriptFunction as ai, enforcePdfAFull as al, reorderVisual as an, RichTextFieldReadError as ao, setFontSize as ap, RenderOptions$1 as ar, ItfOptions as as, renderPageTile as at, DiffEntry as au, AutoTagResult as b, BatchErrorStrategy as ba, embedIccProfile as bc, generateCircleAppearance as bd, EncryptDictValues as bf, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as bi, PdfAProfile as bl, ThreatSeverity as bn, ellipsisText as bo, clipEvenOdd as bp, XRechnungOptions as br, base64Encode as bs, ExtractedImage as bt, setCertificationLevel as bu, ValidatableInvoice as c, ParsedPage as ca, convertTiffCmykToRgb as cc, encodeSequence as cd, setFieldValue as cf, evaluateFunction as ci, generatePdfAXmpBytes as cl, PermissionFlags as cn, HeaderFooterContent as co, setTextRenderingMode as cp, renderToPdf as cr, Code39Options as cs, redactRegions as ct, FieldLockInfo as cu, assembleFacturX as d, StreamingParserOptions as da, JpegMetadata as dc, encodeUtf8String as dd, AFSpecial_Format as df, CollectionOptions as di, StrippedFeature as dl, RedactionRegion as dn, applyHeaderFooter as do, showText as dp, RangeFetchOptions as dr, encodeCode39 as ds, OcrWord as dt, buildFieldLockDict as du, tableToCsv as ea, webpToJpeg as ec, SignerInfo as ed, AFDate_FormatEx as ef, buildType5Halftone as ei, enforcePdfX as el, parseVariableFont as en, InvalidPageSizeError as eo, moveText as ep, PdfVtConformance as er, calculateEanCheckDigit as es, registerEmbeddedFile as et, embedLtvData as eu, buildFacturXXmp as f, StreamingPdfParser as fa, extractJpegMetadata as fc, ByteRangeResult as fd, validateFieldValue as ff, CollectionSchemaField as fi, countOccurrences as fl, RedactionVerificationReport as fn, applyHeaderFooterToPage as fo, showTextArray as fp, RangeFetcher as fr, Code128Options as fs, applyOcr as ft, getFieldLocks as fu, PreflightIssue as g, getInlineWasmSize as ga, ImageDpi as gc, findSignatures as gd, aesDecryptCBC as gf, Paragraph as gi, XmpValidationResult as gl, SanitizeReport as gn, toRoman as go, buildDeviceNColorSpace as gp, ScriptRun as gr, valuesToModules as gs, comparePages as gt, detectModifications as gu, buildWtpdfIdentificationXmp as h, getInlineWasmBytes as ha, analyzeJpegMarkers as hc, embedSignature as hd, sha512 as hf, Line as hi, XmpIssue as hl, SanitizeOptions as hn, toAlpha as ho, showTextWithSpacing as hp, FallbackRun as hr, encodeCode128Values as hs, compareImages as ht, ModificationViolationType as hu, detectFacturXProfile as i, MetadataPluginOptions as ia, getImageFormatName as ic, encodeLength as id, formatNumber as if, PdfFunctionDef as ii, EnforcementAction as il, BidiRun as in, RemovePageFromEmptyDocumentError as io, setFont as ip, gtsPdfVtVersion as ir, encodeEan8 as is, computeTileGrid as it, getCounterSignatures as iu, tagLink as j, setPageLabels as ja, ProgressInfo as jc, CaretSymbol as jd, checkAccessibility as jf, JsonReport as ji, generateSrgbIccProfile as jl, getComponentDepths as jn, minimalPreset as jo, fillAndStroke as jp, sampleShadingColor as jr, loadWasmModule as js, renderPageToImage as jt, parseExistingTrailer as ju, tagFigure as k, getPageLabels as ka, ImageOptimizeEntry as kc, FileAttachmentIcon as kd, enforcePdfUa as kf, labToRgb as ki, buildOutputIntent as kl, layoutTextFlow as kn, applyTablePreset as ko, endPath as kp, FunctionShadingOptions as kr, isWasmDisabled as ks, RenderOptions as kt, appendIncrementalUpdate as ku, validateEn16931 as l, StreamingParseResult as la, embedTiffCmyk as lc, encodeSet as ld, addVisibilityAction as lf, MarkdownToPdfOptions as li, StripOptions as ll, inspectEncryption as ln, HeaderFooterOptions as lo, setTextRise as lp, FetchLike as lr, code39ToOperators as ls, ApplyOcrOptions as lt, FieldLockOptions as lu, buildPdfRIdentificationXmp as m, WasmModuleName as ma, JpegMarkerInfo as mc, computeSignatureHash as md, sha384 as mf, buildCollection as mi, ParsedXmpMetadata as ml, SanitizeClass as mn, replaceTemplateVariables as mo, showTextNextLine as mp, FallbackFont as mr, encodeCode128 as ms, DiffResult as mt, ModificationViolation as mu, index_d_exports as n, AccessibilityPluginOptions as na, ImageFormat as nc, encodeContextTag as nd, parseAcrobatDate as nf, nameHalftone as ni, EnforcePdfAOptions as nl, BidiDirection as nn, NoSuchFieldError as no, nextLine as np, buildPdfVtDParts as nr, ean8ToOperators as ns, TileGrid as nt, CounterSignatureInfo as nu, DeclaredInvoiceTotals as o, TimestampPluginOptions as oa, TiffCmykEmbedResult as oc, encodeOctetString as od, getFieldValue as of, SampledFunction as oi, PdfAXmpOptions as ol, resolveBidi as on, StreamingParseError as oo, setLeading as op, VNode as or, encodeItf as os, RedactRect as ot, DocumentDiff as ou, ProfileXmpOptions as p, PdfDocumentBuilder as pa, injectJpegMetadata as pc, PrepareAppearanceOptions as pd, sha256 as pf, CollectionView as pi, stripProhibitedFeatures as pl, verifyRedactions as pn, formatDate as po, showTextHex as pp, createRangeFetcher as pr, code128ToOperators as ps, CompareOptions as pt, ModificationReport as pu, WrapperPayloadOptions as q, ExceededMaxLengthError as qa, initJpegWasm as qc, PdfUnderlineAnnotation as qd, endMarkedContent as qf, buildRequirement as qi, IncrementalChange as ql, ExternalSigner as qn, DataMatrixOptions as qo, IncrementalSaveResult as qp, buildPdfX6OutputIntent as qr, isWebPLossless as qs, getColorGlyphLayers as qt, checkCertificateStatus as qu, initWasm as r, accessibilityPlugin as ra, detectImageFormat as rc, encodeInteger as rd, AFNumber_Format as rf, ExponentialFunction as ri, EnforcePdfAResult as rl, BidiResult as rn, PluginError as ro, setCharacterSpacing as rp, buildVtDpm as rr, encodeEan13 as rs, TileOptions as rt, addCounterSignature as ru, EInvoiceIssue as s, timestampPlugin as sa, TiffIfdEntry as sc, encodePrintableString as sd, resolveFieldReference as sf, StitchingFunction as si, generatePdfAXmp as sl, EncryptionReport as sn, UnexpectedFieldTypeError as so, setTextMatrix as sp, h as sr, itfToOperators as ss, RedactResult as st, diffSignedContent as su, InitWasmOptions as t, tableToJson as ta, webpToPng as tc, buildPkcs7Signature as td, formatDate$1 as tf, identityTransferFunction as ti, validatePdfX as tl, resolveInstanceCoordinates as tn, MissingOnValueCheckError as to, moveTextSetLeading as tp, RecordMetadata as tr, ean13ToOperators as ts, RenderCache as tt, hasLtvData as tu, FacturXAssembleOptions as u, StreamingParserEvent as ua, isCmykTiff as uc, encodeUTCTime as ud, setFieldVisibility as uf, markdownToPdf as ui, StripResult as ul, RedactionLeak as un, HeaderFooterPosition as uo, setWordSpacing as up, FetchLikeResponse as ur, computeCode39CheckDigit as us, OcrEngine as ut, addFieldLock as uu, preflightPdfA as v, isValidModuleName as va, computeTargetDimensions as vc, decodeJpeg2000 as vd, rc4 as vf, reconstructLines as vi, parseXmpMetadata as vl, ThreatFinding as vn, OverflowResult as vo, circlePath as vp, splitByScript as vr, BarcodeOptions as vs, FontFileFormat as vt, buildDocMdpReference as vu, buildPdfUa2Xmp as w, batchFlatten as wa, convertToGrayscale as wc, generateLineAppearance as wd, PdfUaEnforcementResult as wf, CalRGBParams as wi, generateSymbolToUnicodeCmap as wl, buildSigningCertificateV2Attribute as wn, wrapText as wo, closePath as wp, PdfA4ExtensionSchema as wr, WasmLoaderConfig as ws, Canvas2DLike as wt, AppendOptions as wu, autoTagPage as x, BatchOptions as xa, extractIccProfile as xc, generateFreeTextAppearance as xd, computeFileEncryptionKey as xf, DocTimeStampOptions as xi, getProfile as xl, scanPdfThreats as xn, estimateTextWidth as xo, closeAndStroke as xp, generateOrderX as xr, PdfWorker as xs, extractImages as xt, SignatureChainEntry as xu, AutoTagOptions as y, preloadInlineWasm as ya, IccProfile as yc, searchTextItems as yd, md5 as yf, reconstructParagraphs as yi, validateXmpMetadata as yl, ThreatReport as yn, applyOverflow as yo, clip as yp, OrderXType as yr, base64Decode as ys, extractFonts as yt, getCertificationLevel as yu, buildBlackPointCompensationExtGState as z, FlattenFormResult as za, estimateJpegQuality as zc, PdfCircleAnnotation as zd, MarkedContentScope as zf, toSarif as zi, enforcePdfA as zl, parseTileInfo as zn, readEan8 as zo, setLineCap as zp, InvoiceParty as zr, decodeTiffAll as zs, Rgba as zt, TrustStore as zu };
|
|
12175
|
-
//# sourceMappingURL=index-
|
|
12570
|
+
export { attachAssociatedFiles as $, processBatch as $a, DeduplicationReport as $c, generateSquigglyAppearance as $d, PdfUaLevel as $f, buildCalGray as $i, generateZapfDingbatsToUnicodeCmap as $l, findHyphenationPoints as $n, PresetOptions as $o, curveToFinal as $p, PdfA4Options as $r, configureWasmLoader as $s, parseIccTransform as $t, IncrementalSaveOptions as $u, tagHeading as A, accessibilityPlugin as Aa, detectImageFormat as Ac, encodeInteger as Ad, AFNumber_Format as Af, ExponentialFunction as Ai, EnforcePdfAResult as Al, BidiResult as An, PluginError as Ao, setCharacterSpacing as Ap, buildVtDpm as Ar, encodeEan13 as As, rasterize as At, addCounterSignature as Au, buildColorKeyMask as B, PdfDocumentBuilder as Ba, injectJpegMetadata as Bc, PrepareAppearanceOptions as Bd, sha256 as Bf, CollectionView as Bi, stripProhibitedFeatures as Bl, verifyRedactions as Bn, formatDate as Bo, showTextHex as Bp, createRangeFetcher as Br, code128ToOperators as Bs, StrokeItem as Bt, ModificationReport as Bu, PdfUa2Result as C, buildDPartRoot as Ca, canDirectEmbed as Cc, buildTimestampRequest as Cd, LinkHighlightMode as Cf, Type1Halftone as Ci, RedactionOperatorOptions as Cl, NamedInstance as Cn, FontNotEmbeddedError as Co, drawImageXObject as Cp, TaskRunner as Cr, encodeDataMatrix as Cs, generateThumbnail as Ct, optimizeIncrementalSave as Cu, ListNumbering as D, tableToCsv as Da, webpToJpeg as Dc, SignerInfo as Dd, AFDate_FormatEx as Df, buildType5Halftone as Di, enforcePdfX as Dl, parseVariableFont as Dn, InvalidPageSizeError as Do, moveText as Dp, PdfVtConformance as Dr, calculateEanCheckDigit as Ds, renderPageToCanvas as Dt, embedLtvData as Du, LIST_NUMBERING_KEY as E, extractTables as Ea, recompressWebP as Ec, SignatureOptions as Ed, TextAnnotationIcon as Ef, buildType1Halftone as Ei, buildPdfXOutputIntent as El, normalizeAxisCoordinate as En, InvalidFieldNamePartError as Eo, endText as Ep, createWorkerPool as Er, upcAToOperators as Es, renderDisplayListToCanvas as Et, buildDssDictionary as Eu, tagTable as F, ParsedPage as Fa, convertTiffCmykToRgb as Fc, encodeSequence as Fd, setFieldValue as Ff, evaluateFunction as Fi, generatePdfAXmpBytes as Fl, PermissionFlags as Fn, HeaderFooterContent as Fo, setTextRenderingMode as Fp, renderToPdf as Fr, Code39Options as Fs, DisplayItem as Ft, FieldLockInfo as Fu, buildSoftMaskNone as G, isValidModuleName as Ga, computeTargetDimensions as Gc, decodeJpeg2000 as Gd, rc4 as Gf, reconstructLines as Gi, parseXmpMetadata as Gl, ThreatFinding as Gn, OverflowResult as Go, circlePath as Gp, splitByScript as Gr, BarcodeOptions as Gs, hsvToRgb as Gt, buildDocMdpReference as Gu, buildStencilMask as H, getInlineWasmBytes as Ha, analyzeJpegMarkers as Hc, embedSignature as Hd, sha512 as Hf, Line as Hi, XmpIssue as Hl, SanitizeOptions as Hn, toAlpha as Ho, showTextWithSpacing as Hp, FallbackRun as Hr, encodeCode128Values as Hs, TextItem as Ht, ModificationViolationType as Hu, tagTableDataCell as I, StreamingParseResult as Ia, embedTiffCmyk as Ic, encodeSet as Id, addVisibilityAction as If, MarkdownToPdfOptions as Ii, StripOptions as Il, inspectEncryption as In, HeaderFooterOptions as Io, setTextRise as Ip, FetchLike as Ir, code39ToOperators as Is, DisplayList as It, FieldLockOptions as Iu, buildEncryptedPayload as J, BatchOptions as Ja, extractIccProfile as Jc, generateFreeTextAppearance as Jd, computeFileEncryptionKey as Jf, DocTimeStampOptions as Ji, getProfile as Jl, scanPdfThreats as Jn, estimateTextWidth as Jo, closeAndStroke as Jp, generateOrderX as Jr, PdfWorker as Js, rgbToLab as Jt, SignatureChainEntry as Ju, EncryptedPayloadOptions as K, preloadInlineWasm as Ka, IccProfile as Kc, searchTextItems as Kd, md5 as Kf, reconstructParagraphs as Ki, validateXmpMetadata as Kl, ThreatReport as Kn, applyOverflow as Ko, clip as Kp, OrderXType as Kr, base64Decode as Ks, rgbToHsl as Kt, getCertificationLevel as Ku, tagTableHeaderCell as L, StreamingParserEvent as La, isCmykTiff as Lc, encodeUTCTime as Ld, setFieldVisibility as Lf, markdownToPdf as Li, StripResult as Ll, RedactionLeak as Ln, HeaderFooterPosition as Lo, setWordSpacing as Lp, FetchLikeResponse as Lr, computeCode39CheckDigit as Ls, FillItem as Lt, addFieldLock as Lu, tagList as M, metadataPlugin as Ma, getSupportedFormats as Mc, encodeOID as Md, createSandbox as Mf, PostScriptFunction as Mi, enforcePdfAFull as Ml, reorderVisual as Mn, RichTextFieldReadError as Mo, setFontSize as Mp, RenderOptions$1 as Mr, ItfOptions as Ms, InterpretOptions as Mt, DiffEntry as Mu, tagListItem as N, TimestampPluginOptions as Na, TiffCmykEmbedResult as Nc, encodeOctetString as Nd, getFieldValue as Nf, SampledFunction as Ni, PdfAXmpOptions as Nl, resolveBidi as Nn, StreamingParseError as No, setLeading as Np, VNode as Nr, encodeItf as Ns, interpretContentStream as Nt, DocumentDiff as Nu, TaggedListItem as O, tableToJson as Oa, webpToPng as Oc, buildPkcs7Signature as Od, formatDate$1 as Of, identityTransferFunction as Oi, validatePdfX as Ol, resolveInstanceCoordinates as On, MissingOnValueCheckError as Oo, moveTextSetLeading as Op, RecordMetadata as Or, ean13ToOperators as Os, RasterImage as Ot, hasLtvData as Ou, tagParagraph as P, timestampPlugin as Pa, TiffIfdEntry as Pc, encodePrintableString as Pd, resolveFieldReference as Pf, StitchingFunction as Pi, generatePdfAXmp as Pl, EncryptionReport as Pn, UnexpectedFieldTypeError as Po, setTextMatrix as Pp, h as Pr, itfToOperators as Ps, interpretPage as Pt, diffSignedContent as Pu, buildPageOutputIntent as Q, batchMerge as Qa, isGrayscaleImage as Qc, generateSquareAppearance as Qd, PdfUaError as Qf, LabParams as Qi, generateWinAnsiToUnicodeCmap as Ql, extractSigningCertificateV2 as Qn, PresetName as Qo, curveTo as Qp, PdfA4Level as Qr, clearWasmCache as Qs, deviceRgbToXyz as Qt, IncrementalObject as Qu, tagTableRow as R, StreamingParserOptions as Ra, JpegMetadata as Rc, encodeUtf8String as Rd, AFSpecial_Format as Rf, CollectionOptions as Ri, StrippedFeature as Rl, RedactionRegion as Rn, applyHeaderFooter as Ro, showText as Rp, RangeFetchOptions as Rr, encodeCode39 as Rs, ImageItem as Rt, buildFieldLockDict as Ru, PdfUa2Issue as S, DocumentPart as Sa, DirectEmbedResult as Sc, TimestampResult as Sd, PdfFreeTextAnnotation as Sf, STANDARD_SPOT_FUNCTIONS as Si, OverlayAlignment as Sl, saveIncremental as Sm, AvarSegmentMap as Sn, FieldExistsAsNonTerminalError as So, drawImageWithMatrix as Sp, signDeferred as Sr, dataMatrixToOperators as Ss, ThumbnailOptions as St, findChangedObjects as Su, validatePdfUa2 as T, TableExtractOptions as Ta, encodePngFromPixels as Tc, requestTimestamp as Td, PdfTextAnnotation as Tf, buildThresholdHalftone as Ti, applyRedaction as Tl, VariationAxis as Tn, InvalidColorError as To, beginText as Tp, WorkerPoolOptions as Tr, encodeUpcA as Ts, CanvasRenderOptions as Tt, LtvOptions as Tu, SoftMaskGroupOptions as U, getInlineWasmSize as Ua, ImageDpi as Uc, findSignatures as Ud, aesDecryptCBC as Uf, Paragraph as Ui, XmpValidationResult as Ul, SanitizeReport as Un, toRoman as Uo, buildDeviceNColorSpace as Up, ScriptRun as Ur, valuesToModules as Us, Matrix as Ut, detectModifications as Uu, buildImageSoftMask as V, WasmModuleName as Va, JpegMarkerInfo as Vc, computeSignatureHash as Vd, sha384 as Vf, buildCollection as Vi, ParsedXmpMetadata as Vl, SanitizeClass as Vn, replaceTemplateVariables as Vo, showTextNextLine as Vp, FallbackFont as Vr, encodeCode128 as Vs, SubPath as Vt, ModificationViolation as Vu, buildSoftMaskGroupExtGState as W, hasInlineWasmData as Wa, computeImageDpi as Wc, prepareForSigning as Wd, aesEncryptCBC as Wf, ReconstructOptions as Wi, extractXmpMetadata as Wl, sanitizePdf as Wn, OverflowMode as Wo, buildSeparationColorSpace as Wp, resolveFallback as Wr, BarcodeMatrix as Ws, hslToRgb as Wt, MdpPermission as Wu, PageOutputIntentOptions as X, BatchResult as Xa, parseIccDescription as Xc, generateInkAppearance as Xd, verifyUserPassword as Xf, CalGrayParams as Xi, isValidLevel as Xl, buildCertPath as Xn, truncateText as Xo, closeFillEvenOddAndStroke as Xp, PdfA4ExtensionProperty as Xr, RuntimeKind as Xs, xyzToRgb as Xt, validateSignatureChain as Xu, buildUnencryptedWrapper as Y, BatchProgressCallback as Ya, parseIccColorSpace as Yc, generateHighlightAppearance as Yd, verifyOwnerPassword as Yf, buildDocTimeStampDict as Yi, getSupportedLevels as Yl, CertPathResult as Yn, shrinkFontSize as Yo, closeFillAndStroke as Yp, generateXRechnungCii as Yr, PdfWorkerOptions as Ys, rgbToXyz as Yt, SignatureChainResult as Yu, attachOutputIntents as Z, batchFlatten as Za, convertToGrayscale as Zc, generateLineAppearance as Zd, PdfUaEnforcementResult as Zf, CalRGBParams as Zi, generateSymbolToUnicodeCmap as Zl, buildSigningCertificateV2Attribute as Zn, wrapText as Zo, closePath as Zp, PdfA4ExtensionSchema as Zr, WasmLoaderConfig as Zs, IccTransformInfo as Zt, AppendOptions as Zu, convertPdfAConformanceXmp as _, buildNamespacesArray as _a, WebPImage as _c, downloadCrl as _d, PdfHighlightAnnotation as _f, PdfX6Variant as _i, JpegWasmModule as _l, isOpenTypeCFF as _m, ColorFontInfo as _n, BatchProcessingError as _o, beginMarkedContentWithProperties as _p, readWoffHeader as _r, Pdf417Options as _s, ExtractedFont as _t, getLinearizationInfo as _u, parseCiiXml as a, SARIF_SCHEMA_URI as aa, loadWasmModuleStreaming as ac, saveIncrementalWithSignaturePreservation as ad, PdfCaretAnnotation as af, CodeFrameOptions as ai, optimizeAllImages as al, fillEvenOdd as am, CoonsPatchOptions as an, AddBookmarkOptions as ao, isAccessible as ap, normalizeComponentDepth as ar, professionalPreset as as, renderPageTile as at, TransparencyFinding as au, AutoTagResult as b, buildRequirement as ba, isWebPLossless as bc, checkCertificateStatus as bd, PdfUnderlineAnnotation as bf, buildPdfX6OutputIntent as bi, initJpegWasm as bl, IncrementalSaveResult as bm, getColorGlyphLayers as bn, ExceededMaxLengthError as bo, endMarkedContent as bp, ExternalSigner as br, DataMatrixOptions as bs, ExtractedImage as bt, IncrementalChange as bu, ValidatableInvoice as c, SarifRun as ca, IfdEntry as cc, EKU_OIDS as cd, PdfInkAnnotation as cf, renderCodeFrame as ci, OptimizeResult as cl, moveTo as cm, LatticeFormGouraudOptions as cn, addBookmark as co, createXmpStream as cp, upscale8To16 as cr, readBarcode as cs, redactRegions as ct, flattenTransparency as cu, assembleFacturX as d, toJsonReport as da, decodeTiff as dc, validateKeyUsage as dd, LineEndingStyle as df, InvoiceLine as di, downscaleImage as dl, setFlatness as dm, TensorPatch as dn, removeBookmark as do, PDFOperator as dp, decodeTileRegion as dr, readEan13 as ds, OcrWord as dt, PdfAValidationResult as du, buildCalRGB as ea, detectRuntime as ec, SignatureByteRange as ed, generateStrikeOutAppearance as ef, buildPdfA4Xmp as ei, deduplicateImages as el, curveToInitial as em, xyzToLab as en, PageLabelRange as eo, PdfUaValidationResult as ep, layoutColumns as er, TablePreset as es, registerEmbeddedFile as et, getToUnicodeCmap as eu, buildFacturXXmp as f, toSarif as fa, decodeTiffAll as fc, TrustStore as fd, PdfCircleAnnotation as ff, InvoiceParty as fi, estimateJpegQuality as fl, setLineCap as fm, TensorPatchOptions as fn, FlattenFormResult as fo, MarkedContentScope as fp, parseTileInfo as fr, readEan8 as fs, applyOcr as ft, enforcePdfA as fu, PreflightIssue as g, buildNamespace as ga, parseTiffIfd as gc, validateCertificateChain as gd, PdfSquareAnnotation as gf, PdfX6Options as gi, JpegDecodeResult as gl, stroke as gm, buildTensorPatchShading as gn, flattenForm as go, beginMarkedContentSequence as gp, isWoff2 as gr, Pdf417Matrix as gs, comparePages as gt, delinearizePdf as gu, buildWtpdfIdentificationXmp as h, PDF2_NAMESPACE as ha, isTiff as hc, buildCertificateChain as hd, PdfPolygonAnnotation as hf, PdfRect as hi, ChromaSubsampling as hl, setMiterLimit as hm, buildLatticeFormGouraudShading as hn, flattenFields as ho, beginMarkedContent as hp, isWoff as hr, renderStyledBarcode as hs, compareImages as ht, LinearizationOptions as hu, detectFacturXProfile as i, JsonReport as ia, loadWasmModule as ic, parseExistingTrailer as id, CaretSymbol as if, sampleShadingColor as ii, ProgressInfo as il, fillAndStroke as im, CoonsPatch as in, setPageLabels as io, checkAccessibility as ip, getComponentDepths as ir, minimalPreset as is, computeTileGrid as it, generateSrgbIccProfile as iu, tagLink as j, MetadataPluginOptions as ja, getImageFormatName as jc, encodeLength as jd, formatNumber as jf, PdfFunctionDef as ji, EnforcementAction as jl, BidiRun as jn, RemovePageFromEmptyDocumentError as jo, setFont as jp, gtsPdfVtVersion as jr, encodeEan8 as js, renderPageToImage as jt, getCounterSignatures as ju, tagFigure as k, AccessibilityPluginOptions as ka, ImageFormat as kc, encodeContextTag as kd, parseAcrobatDate as kf, nameHalftone as ki, EnforcePdfAOptions as kl, BidiDirection as kn, NoSuchFieldError as ko, nextLine as kp, buildPdfVtDParts as kr, ean8ToOperators as ks, RenderOptions as kt, CounterSignatureInfo as ku, validateEn16931 as l, ValidationFinding as la, TiffDecodeOptions as lc, validateCertificatePolicy as ld, PdfStampAnnotation as lf, FacturXProfile as li, RawImageData as ll, rectangle as lm, MeshShadingCommon as ln, getBookmarks as lo, parseXmpMetadata$1 as lp, assembleTiles as lr, readCode128 as ls, ApplyOcrOptions as lt, PdfAIssue as lu, buildPdfRIdentificationXmp as m, NamespaceDef as ma, getTiffPageCount as mc, verifyOfflineRevocation as md, PdfPolyLineAnnotation as mf, BoxGeometry as mi, recompressImage as ml, setLineWidth as mm, buildFreeFormGouraudShading as mn, flattenField as mo, beginArtifactWithType as mp, decodeWoff as mr, calculateBarcodeDimensions as ms, DiffResult as mt, LinearizationInfo as mu, index_d_exports as n, labToRgb as na, isWasmDisabled as nc, appendIncrementalUpdate as nd, FileAttachmentIcon as nf, FunctionShadingOptions as ni, ImageOptimizeEntry as nl, endPath as nm, BitsPerCoordinate as nn, getPageLabels as no, enforcePdfUa as np, layoutTextFlow as nr, applyTablePreset as ns, TileGrid as nt, buildOutputIntent as nu, DeclaredInvoiceTotals as o, SarifLog as oa, provideWasmBytes as oc, validateByteRangeIntegrity as od, PdfPopupAnnotation as of, didYouMean as oi, DownscaleOptions as ol, fillEvenOddAndStroke as om, FlaggedVertex as on, BookmarkNode as oo, summarizeIssues as op, offsetSignedToUnsigned as or, stripedPreset as os, RedactRect as ot, TransparencyInfo as ou, ProfileXmpOptions as p, MATHML_NAMESPACE as pa, decodeTiffPage as pc, extractEmbeddedRevocationData as pd, PdfLineAnnotation as pf, generateCiiXml as pi, optimizeImage as pl, setLineJoin as pm, buildCoonsPatchShading as pn, FlattenOptions as po, beginArtifact as pp, WoffInfo as pr, StyledBarcodeOptions as ps, CompareOptions as pt, validatePdfA as pu, WrapperPayloadOptions as q, BatchErrorStrategy as qa, embedIccProfile as qc, generateCircleAppearance as qd, EncryptDictValues as qf, DEFAULT_DOC_TIMESTAMP_CONTENTS_SIZE as qi, PdfAProfile as ql, ThreatSeverity as qn, ellipsisText as qo, clipEvenOdd as qp, XRechnungOptions as qr, base64Encode as qs, rgbToHsv as qt, setCertificationLevel as qu, initWasm as r, DEFAULT_SARIF_TOOL_NAME as ra, isWasmModuleCached as rc, findExistingSignatures as rd, PdfFileAttachmentAnnotation as rf, buildFunctionShading as ri, OptimizationReport as rl, fill as rm, BitsPerFlag as rn, removePageLabels as ro, validatePdfUa as rp, downscale16To8 as rr, borderedPreset as rs, TileOptions as rt, SRGB_ICC_PROFILE as ru, EInvoiceIssue as s, SarifResult as sa, resetWasmLoader as sc, verifySignatureDetailed as sd, PdfRedactAnnotation as sf, levenshtein as si, ImageOptimizeOptions as sl, lineTo as sm, FreeFormGouraudOptions as sn, BookmarkRef as so, buildXmpMetadata as sp, summarizeBitDepth as sr, BarcodeReadResult as ss, RedactResult as st, detectTransparency as su, InitWasmOptions as t, buildLab as ta, instantiateWasmModuleStreaming as tc, TrailerInfo as td, generateUnderlineAppearance as tf, pdfA4Rules as ti, BatchOptimizeOptions as tl, ellipsePath as tm, BitsPerComponent as tn, PageLabelStyle as to, PdfUaWarning as tp, layoutParagraph as tr, applyPreset as ts, RenderCache as tt, OutputIntentOptions as tu, FacturXAssembleOptions as u, ValidationLevel as ua, TiffImage as uc, validateExtendedKeyUsage as ud, StandardStampName as uf, Invoice as ui, RecompressOptions as ul, setDashPattern as um, MeshVertex as un, removeAllBookmarks as uo, PdfStreamWriter as up, decodeTile as ur, readCode39 as us, OcrEngine as ut, PdfALevel as uu, preflightPdfA as v, buildPieceInfo as va, decodeWebP as vc, extractCrlUrls as vd, PdfSquigglyAnnotation as vf, buildBoxDict as vi, decodeJpegWasm as vl, isTrueType as vm, ColorGlyphLayer as vn, CombedTextLayoutError as vo, createMarkedContentScope as vp, DeferredSignOptions as vr, encodePdf417 as vs, FontFileFormat as vt, isLinearized as vu, buildPdfUa2Xmp as w, ExtractedTable as wa, embedTiffDirect as wc, parseTimestampResponse as wd, PdfLinkAnnotation as wf, buildSampledTransferFunction as wi, RedactionResult as wl, VariableFontInfo as wn, ForeignPageError as wo, drawXObject as wp, WorkerPool as wr, calculateUpcCheckDigit as ws, Canvas2DLike as wt, DssData as wu, autoTagPage as x, buildRequirements as xa, DirectEmbedOptions as xc, extractOcspUrl as xd, FreeTextAlignment as xf, validateBoxGeometry as xi, isJpegWasmReady as xl, saveDocumentIncremental as xm, parseColorFont as xn, FieldAlreadyExistsError as xo, wrapInMarkedContent as xp, SignatureAlgorithm as xr, DataMatrixResult as xs, extractImages as xt, computeObjectHash as xu, AutoTagOptions as y, RequirementType as ya, isWebP as yc, isCertificateRevoked as yd, PdfStrikeOutAnnotation as yf, buildGtsPdfxVersion as yi, encodeJpegWasm as yl, ChangeTracker as ym, CpalPalette as yn, EncryptedPdfError as yo, endArtifact as yp, DeferredSignResult as yr, pdf417ToOperators as ys, extractFonts as yt, linearizePdf as yu, buildBlackPointCompensationExtGState as z, StreamingPdfParser as za, extractJpegMetadata as zc, ByteRangeResult as zd, validateFieldValue as zf, CollectionSchemaField as zi, countOccurrences as zl, RedactionVerificationReport as zn, applyHeaderFooterToPage as zo, showTextArray as zp, RangeFetcher as zr, Code128Options as zs, Rgba as zt, getFieldLocks as zu };
|
|
12571
|
+
//# sourceMappingURL=index-BnS4WpNK.d.cts.map
|