@syncfusion/ej2-pdf-data-extract 30.1.41 → 30.2.4

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.
Files changed (54) hide show
  1. package/dist/ej2-pdf-data-extract.umd.min.js +1 -2
  2. package/dist/global/ej2-pdf-data-extract.min.js +1 -2
  3. package/dist/global/index.d.ts +1 -2
  4. package/package.json +14 -46
  5. package/dist/ts/index.d.ts +0 -20
  6. package/dist/ts/index.ts +0 -20
  7. package/dist/ts/pdf-data-extract/core/content-parser-helper.d.ts +0 -62
  8. package/dist/ts/pdf-data-extract/core/content-parser-helper.ts +0 -640
  9. package/dist/ts/pdf-data-extract/core/enum.d.ts +0 -6
  10. package/dist/ts/pdf-data-extract/core/enum.ts +0 -6
  11. package/dist/ts/pdf-data-extract/core/graphic-state.d.ts +0 -33
  12. package/dist/ts/pdf-data-extract/core/graphic-state.ts +0 -106
  13. package/dist/ts/pdf-data-extract/core/pdf-data-extractor.d.ts +0 -210
  14. package/dist/ts/pdf-data-extract/core/pdf-data-extractor.ts +0 -977
  15. package/dist/ts/pdf-data-extract/core/pdf-text-parser.d.ts +0 -67
  16. package/dist/ts/pdf-data-extract/core/pdf-text-parser.ts +0 -495
  17. package/dist/ts/pdf-data-extract/core/redaction/index.d.ts +0 -4
  18. package/dist/ts/pdf-data-extract/core/redaction/index.ts +0 -4
  19. package/dist/ts/pdf-data-extract/core/redaction/pdf-redaction-processor.d.ts +0 -55
  20. package/dist/ts/pdf-data-extract/core/redaction/pdf-redaction-processor.ts +0 -592
  21. package/dist/ts/pdf-data-extract/core/redaction/pdf-redaction-region.d.ts +0 -281
  22. package/dist/ts/pdf-data-extract/core/redaction/pdf-redaction-region.ts +0 -342
  23. package/dist/ts/pdf-data-extract/core/redaction/pdf-redactor.d.ts +0 -129
  24. package/dist/ts/pdf-data-extract/core/redaction/pdf-redactor.ts +0 -322
  25. package/dist/ts/pdf-data-extract/core/redaction/text-glyph-mapper.d.ts +0 -12
  26. package/dist/ts/pdf-data-extract/core/redaction/text-glyph-mapper.ts +0 -153
  27. package/dist/ts/pdf-data-extract/core/text-extraction/binary-cmap-reader.d.ts +0 -24
  28. package/dist/ts/pdf-data-extract/core/text-extraction/binary-cmap-reader.ts +0 -281
  29. package/dist/ts/pdf-data-extract/core/text-extraction/cmap.d.ts +0 -50
  30. package/dist/ts/pdf-data-extract/core/text-extraction/cmap.ts +0 -565
  31. package/dist/ts/pdf-data-extract/core/text-extraction/compact-font-parser.d.ts +0 -191
  32. package/dist/ts/pdf-data-extract/core/text-extraction/compact-font-parser.ts +0 -1928
  33. package/dist/ts/pdf-data-extract/core/text-extraction/encoding-utils.d.ts +0 -102
  34. package/dist/ts/pdf-data-extract/core/text-extraction/encoding-utils.ts +0 -5780
  35. package/dist/ts/pdf-data-extract/core/text-extraction/font-structure.d.ts +0 -167
  36. package/dist/ts/pdf-data-extract/core/text-extraction/font-structure.ts +0 -1842
  37. package/dist/ts/pdf-data-extract/core/text-extraction/font-tables.d.ts +0 -5
  38. package/dist/ts/pdf-data-extract/core/text-extraction/font-tables.ts +0 -16
  39. package/dist/ts/pdf-data-extract/core/text-extraction/font-utils.d.ts +0 -18
  40. package/dist/ts/pdf-data-extract/core/text-extraction/font-utils.ts +0 -630
  41. package/dist/ts/pdf-data-extract/core/text-extraction/glyph.d.ts +0 -93
  42. package/dist/ts/pdf-data-extract/core/text-extraction/glyph.ts +0 -622
  43. package/dist/ts/pdf-data-extract/core/text-extraction/index.d.ts +0 -10
  44. package/dist/ts/pdf-data-extract/core/text-extraction/index.ts +0 -10
  45. package/dist/ts/pdf-data-extract/core/text-extraction/matrix-helper.d.ts +0 -38
  46. package/dist/ts/pdf-data-extract/core/text-extraction/matrix-helper.ts +0 -150
  47. package/dist/ts/pdf-data-extract/core/text-extraction/metrics.d.ts +0 -16
  48. package/dist/ts/pdf-data-extract/core/text-extraction/metrics.ts +0 -2938
  49. package/dist/ts/pdf-data-extract/core/text-structure.d.ts +0 -628
  50. package/dist/ts/pdf-data-extract/core/text-structure.ts +0 -668
  51. package/dist/ts/pdf-data-extract/core/utils.d.ts +0 -99
  52. package/dist/ts/pdf-data-extract/core/utils.ts +0 -626
  53. package/dist/ts/pdf-data-extract/index.d.ts +0 -20
  54. package/dist/ts/pdf-data-extract/index.ts +0 -20
@@ -1,102 +0,0 @@
1
- export declare const _expertEncoding: string[];
2
- export declare const _macExpertEncoding: string[];
3
- export declare const _macRomanEncoding: string[];
4
- export declare const _standardEncoding: string[];
5
- export declare const _winAnsiEncoding: string[];
6
- export declare const _symbolSetEncoding: string[];
7
- export declare const _zapfDingbatsEncoding: string[];
8
- /**
9
- * Get Font Encoding
10
- *
11
- * @param {string} encodingName encoding name.
12
- * @returns {string[]} Page index.
13
- */
14
- export declare function _getEncoding(encodingName: string): string[];
15
- /**
16
- * Get Glyphs Unicode
17
- *
18
- * This function returns an object mapping glyph names (strings) to their respective Unicode values (numbers).
19
- * The returned object can be used to look up the Unicode values for various glyphs.
20
- *
21
- * @returns {Object<string, number>} An object where the keys are the glyph names (strings) and the values are their corresponding unicode values (numbers).
22
- */
23
- export declare function _getGlyphsUnicode(): {
24
- [key: string]: number;
25
- };
26
- /**
27
- * Get serif Fonts
28
- *
29
- * @returns {object} serifiFont Encoding values
30
- */
31
- export declare function _getSerifFonts(): {
32
- [key: string]: boolean;
33
- };
34
- /**
35
- * Get Std Font Map
36
- *
37
- * @returns {object} StdFont Encoding values
38
- */
39
- export declare function _getStdFontMap(): {
40
- [key: string]: string;
41
- };
42
- /**
43
- * Get glyph Map for standard fonts
44
- *
45
- * @returns {object} standardFont Encoding values
46
- */
47
- export declare function _getGlyphMapForStandardFonts(): {
48
- [key: number]: number;
49
- };
50
- /**
51
- * Get Supplemental Glyph Map For ArialBlack
52
- *
53
- * @returns {object} StdFont Encoding values
54
- */
55
- export declare function _getSupplementalGlyphMapForArialBlack(): {
56
- [key: number]: number;
57
- };
58
- /**
59
- * Get Supplemental Glyph for font
60
- *
61
- * @returns {object} A map where keys are the character codes and values are the
62
- * corresponding supplemental glyph codes.
63
- */
64
- export declare function _getFontGlyphMap(): {
65
- [key: number]: number;
66
- };
67
- /**
68
- * Get Non-Standard Font Mapping
69
- *
70
- * This function returns a mapping of non-standard font names to their standard font counterparts.
71
- * It maps each non-standard font to a standard font name, making it easier to work with fonts
72
- * in contexts where non-standard fonts need to be substituted with their standard equivalents.
73
- *
74
- * @returns {object} A map where the keys are non-standard font names and the values are the corresponding standard font names.
75
- */
76
- export declare function _getNonStdFontMap(): {
77
- [key: string]: string;
78
- };
79
- /**
80
- * Get Dingbats Glyphs Unicode Mapping
81
- *
82
- * This function returns a mapping of Dingbats glyph names to their corresponding Unicode values.
83
- * The mapping helps in converting Dingbats symbols to their Unicode equivalents.
84
- *
85
- * @returns {object} A map where the keys are Dingbats glyph names and the values are their corresponding Unicode values.
86
- */
87
- export declare function _getDingbatsGlyphsUnicode(): {
88
- [key: string]: number;
89
- };
90
- export declare function _getFontBasicMetrics(): any;
91
- /**
92
- * Get Symbols Fonts Mapping
93
- *
94
- * This function returns a mapping of font names that are considered symbol fonts.
95
- * The value `true` indicates that the corresponding font is a symbol font, such as Dingbats or Wingdings.
96
- *
97
- * @returns {object} A map where the keys are font names and the values are boolean values (`true`), indicating that the font is a symbol font.
98
- */
99
- export declare function _getSymbolsFonts(): {
100
- [key: string]: boolean;
101
- };
102
- export declare const _getFontNameToFileMap: any;