pdf-codec 1.6.0 → 1.7.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.
Files changed (112) hide show
  1. package/README.md +67 -9
  2. package/dist/cff-bounds.cjs +432 -0
  3. package/dist/cff-bounds.d.cts +9 -0
  4. package/dist/cff-bounds.d.ts +9 -0
  5. package/dist/cff-bounds.js +431 -0
  6. package/dist/cff-probe.cjs +8 -106
  7. package/dist/cff-probe.js +9 -107
  8. package/dist/cff.cjs +158 -0
  9. package/dist/cff.d.cts +17 -0
  10. package/dist/cff.d.ts +17 -0
  11. package/dist/cff.js +150 -0
  12. package/dist/filters.cjs +45 -2
  13. package/dist/filters.d.cts +4 -3
  14. package/dist/filters.d.ts +4 -3
  15. package/dist/filters.js +45 -2
  16. package/dist/formula.d.cts +1 -1
  17. package/dist/formula.d.ts +1 -1
  18. package/dist/glyf.cjs +62 -6
  19. package/dist/glyf.d.cts +2 -0
  20. package/dist/glyf.d.ts +2 -0
  21. package/dist/glyf.js +62 -6
  22. package/dist/glyph-bounds-BV_Z40KS.d.cts +10 -0
  23. package/dist/glyph-bounds-BV_Z40KS.d.ts +10 -0
  24. package/dist/glyph-bounds.cjs +12 -0
  25. package/dist/glyph-bounds.d.cts +2 -0
  26. package/dist/glyph-bounds.d.ts +2 -0
  27. package/dist/glyph-bounds.js +11 -0
  28. package/dist/image/jbig2-arith.cjs +432 -0
  29. package/dist/image/jbig2-arith.d.cts +23 -0
  30. package/dist/image/jbig2-arith.d.ts +23 -0
  31. package/dist/image/jbig2-arith.js +426 -0
  32. package/dist/image/jbig2-bitmap.cjs +80 -0
  33. package/dist/image/jbig2-bitmap.d.cts +20 -0
  34. package/dist/image/jbig2-bitmap.d.ts +20 -0
  35. package/dist/image/jbig2-bitmap.js +72 -0
  36. package/dist/image/jbig2-errors.cjs +17 -0
  37. package/dist/image/jbig2-errors.d.cts +2 -0
  38. package/dist/image/jbig2-errors.d.ts +2 -0
  39. package/dist/image/jbig2-errors.js +15 -0
  40. package/dist/image/jbig2-generic.cjs +242 -0
  41. package/dist/image/jbig2-generic.d.cts +27 -0
  42. package/dist/image/jbig2-generic.d.ts +27 -0
  43. package/dist/image/jbig2-generic.js +237 -0
  44. package/dist/image/jbig2-text.cjs +175 -0
  45. package/dist/image/jbig2-text.d.cts +58 -0
  46. package/dist/image/jbig2-text.d.ts +58 -0
  47. package/dist/image/jbig2-text.js +170 -0
  48. package/dist/image/jbig2.cjs +333 -0
  49. package/dist/image/jbig2.d.cts +15 -0
  50. package/dist/image/jbig2.d.ts +15 -0
  51. package/dist/image/jbig2.js +332 -0
  52. package/dist/image/jp2-boxes.cjs +148 -0
  53. package/dist/image/jp2-boxes.d.cts +26 -0
  54. package/dist/image/jp2-boxes.d.ts +26 -0
  55. package/dist/image/jp2-boxes.js +146 -0
  56. package/dist/image/jpeg2000-codestream.cjs +309 -0
  57. package/dist/image/jpeg2000-codestream.d.cts +78 -0
  58. package/dist/image/jpeg2000-codestream.d.ts +78 -0
  59. package/dist/image/jpeg2000-codestream.js +308 -0
  60. package/dist/image/jpeg2000-dwt.cjs +148 -0
  61. package/dist/image/jpeg2000-dwt.d.cts +34 -0
  62. package/dist/image/jpeg2000-dwt.d.ts +34 -0
  63. package/dist/image/jpeg2000-dwt.js +145 -0
  64. package/dist/image/jpeg2000-errors.cjs +17 -0
  65. package/dist/image/jpeg2000-errors.d.cts +9 -0
  66. package/dist/image/jpeg2000-errors.d.ts +9 -0
  67. package/dist/image/jpeg2000-errors.js +15 -0
  68. package/dist/image/jpeg2000-t1.cjs +254 -0
  69. package/dist/image/jpeg2000-t1.d.cts +18 -0
  70. package/dist/image/jpeg2000-t1.d.ts +18 -0
  71. package/dist/image/jpeg2000-t1.js +253 -0
  72. package/dist/image/jpeg2000-t2.cjs +316 -0
  73. package/dist/image/jpeg2000-t2.d.cts +79 -0
  74. package/dist/image/jpeg2000-t2.d.ts +79 -0
  75. package/dist/image/jpeg2000-t2.js +311 -0
  76. package/dist/image/jpeg2000-tagtree.cjs +105 -0
  77. package/dist/image/jpeg2000-tagtree.d.cts +29 -0
  78. package/dist/image/jpeg2000-tagtree.d.ts +29 -0
  79. package/dist/image/jpeg2000-tagtree.js +103 -0
  80. package/dist/image/jpeg2000.cjs +322 -0
  81. package/dist/image/jpeg2000.d.cts +54 -0
  82. package/dist/image/jpeg2000.d.ts +54 -0
  83. package/dist/image/jpeg2000.js +320 -0
  84. package/dist/images-read.cjs +78 -1
  85. package/dist/images-read.js +78 -1
  86. package/dist/index.cjs +17 -0
  87. package/dist/index.d.cts +11 -2
  88. package/dist/index.d.ts +11 -2
  89. package/dist/index.js +7 -1
  90. package/dist/jbig2-errors-Bj6MPxrx.d.cts +9 -0
  91. package/dist/jbig2-errors-Bj6MPxrx.d.ts +9 -0
  92. package/dist/math-font.cjs +43 -18
  93. package/dist/math-font.d.cts +8 -1
  94. package/dist/math-font.d.ts +8 -1
  95. package/dist/math-font.js +43 -18
  96. package/dist/math-stretch-Bwk_bxh1.d.ts +24 -0
  97. package/dist/math-stretch-DXWjs8gL.d.cts +24 -0
  98. package/dist/math-stretch.cjs +96 -0
  99. package/dist/math-stretch.d.cts +2 -0
  100. package/dist/math-stretch.d.ts +2 -0
  101. package/dist/math-stretch.js +94 -0
  102. package/dist/math-table-DhPrNoPa.d.ts +70 -0
  103. package/dist/math-table-gFNB8DmQ.d.cts +70 -0
  104. package/dist/math-table.cjs +69 -1
  105. package/dist/math-table.d.cts +2 -45
  106. package/dist/math-table.d.ts +2 -45
  107. package/dist/math-table.js +69 -1
  108. package/dist/{math-types-Ba8qAf1p.d.cts → math-types-YSQUTviw.d.cts} +2 -0
  109. package/dist/{math-types-Ba8qAf1p.d.ts → math-types-YSQUTviw.d.ts} +2 -0
  110. package/dist/math-types.d.cts +1 -1
  111. package/dist/math-types.d.ts +1 -1
  112. package/package.json +1 -1
@@ -0,0 +1,70 @@
1
+ import { t as SfntFont } from "./sfnt-V08bb5ut.cjs";
2
+ //#region src/math-table.d.ts
3
+ interface MathConstants {
4
+ readonly scriptPercentScaleDown: number;
5
+ readonly scriptScriptPercentScaleDown: number;
6
+ readonly axisHeight: number;
7
+ readonly subscriptShiftDown: number;
8
+ readonly subscriptBaselineDropMin: number;
9
+ readonly superscriptShiftUp: number;
10
+ readonly superscriptShiftUpCramped: number;
11
+ readonly superscriptBaselineDropMax: number;
12
+ readonly subSuperscriptGapMin: number;
13
+ readonly spaceAfterScript: number;
14
+ readonly upperLimitGapMin: number;
15
+ readonly upperLimitBaselineRiseMin: number;
16
+ readonly lowerLimitGapMin: number;
17
+ readonly lowerLimitBaselineDropMin: number;
18
+ readonly stackTopShiftUp: number;
19
+ readonly stackBottomShiftDown: number;
20
+ readonly stackGapMin: number;
21
+ readonly fractionNumeratorShiftUp: number;
22
+ readonly fractionNumeratorDisplayStyleShiftUp: number;
23
+ readonly fractionDenominatorShiftDown: number;
24
+ readonly fractionDenominatorDisplayStyleShiftDown: number;
25
+ readonly fractionNumeratorGapMin: number;
26
+ readonly fractionRuleThickness: number;
27
+ readonly fractionDenominatorGapMin: number;
28
+ readonly radicalVerticalGap: number;
29
+ readonly radicalRuleThickness: number;
30
+ readonly radicalExtraAscender: number;
31
+ readonly radicalKernBeforeDegree: number;
32
+ readonly radicalKernAfterDegree: number;
33
+ readonly radicalDegreeBottomRaisePercent: number;
34
+ }
35
+ interface MathGlyphInfo {
36
+ readonly italicsCorrection: ReadonlyMap<number, number>;
37
+ readonly topAccentAttachment: ReadonlyMap<number, number>;
38
+ }
39
+ interface MathGlyphVariant {
40
+ readonly glyphId: number;
41
+ readonly advanceMeasurement: number;
42
+ }
43
+ interface MathGlyphPart {
44
+ readonly glyphId: number;
45
+ readonly startConnectorLength: number;
46
+ readonly endConnectorLength: number;
47
+ readonly fullAdvance: number;
48
+ readonly isExtender: boolean;
49
+ }
50
+ interface MathGlyphAssembly {
51
+ readonly italicsCorrection: number;
52
+ readonly parts: readonly MathGlyphPart[];
53
+ }
54
+ interface MathGlyphConstruction {
55
+ readonly variants: readonly MathGlyphVariant[];
56
+ readonly assembly?: MathGlyphAssembly;
57
+ }
58
+ interface MathVariants {
59
+ readonly minConnectorOverlap: number;
60
+ readonly vertical: ReadonlyMap<number, MathGlyphConstruction>;
61
+ readonly horizontal: ReadonlyMap<number, MathGlyphConstruction>;
62
+ }
63
+ interface MathTable {
64
+ readonly constants: MathConstants;
65
+ readonly glyphInfo: MathGlyphInfo;
66
+ readonly variants: MathVariants;
67
+ }
68
+ declare function parseMathTable(font: SfntFont): MathTable;
69
+ //#endregion
70
+ export { MathGlyphPart as a, MathVariants as c, MathGlyphInfo as i, parseMathTable as l, MathGlyphAssembly as n, MathGlyphVariant as o, MathGlyphConstruction as r, MathTable as s, MathConstants as t };
@@ -105,12 +105,80 @@ function parseMathGlyphInfo(bytes, mathTableOffset) {
105
105
  topAccentAttachment: topAccentOffset === 0 ? /* @__PURE__ */ new Map() : parseGlyphValueTable(bytes, glyphInfoOffset + topAccentOffset)
106
106
  };
107
107
  }
108
+ const MATH_GLYPH_VARIANT_RECORD_SIZE = 4;
109
+ const GLYPH_PART_RECORD_SIZE = 10;
110
+ const GLYPH_PART_FLAG_EXTENDER = 1;
111
+ const MATH_VARIANTS_HEADER_SIZE = 10;
112
+ function parseGlyphAssembly(bytes, assemblyOffset) {
113
+ const partCount = require_sfnt.u16(bytes, assemblyOffset + MATH_VALUE_RECORD_SIZE);
114
+ const parts = [];
115
+ for (let i = 0; i < partCount; i++) {
116
+ const recordOffset = assemblyOffset + MATH_VALUE_RECORD_SIZE + 2 + i * GLYPH_PART_RECORD_SIZE;
117
+ parts.push({
118
+ glyphId: require_sfnt.u16(bytes, recordOffset),
119
+ startConnectorLength: require_sfnt.u16(bytes, recordOffset + 2),
120
+ endConnectorLength: require_sfnt.u16(bytes, recordOffset + 4),
121
+ fullAdvance: require_sfnt.u16(bytes, recordOffset + 6),
122
+ isExtender: (require_sfnt.u16(bytes, recordOffset + 8) & GLYPH_PART_FLAG_EXTENDER) !== 0
123
+ });
124
+ }
125
+ return {
126
+ italicsCorrection: require_sfnt.i16(bytes, assemblyOffset),
127
+ parts
128
+ };
129
+ }
130
+ function parseGlyphConstruction(bytes, constructionOffset) {
131
+ const assemblyOffset = require_sfnt.u16(bytes, constructionOffset);
132
+ const variantCount = require_sfnt.u16(bytes, constructionOffset + 2);
133
+ const variants = [];
134
+ for (let i = 0; i < variantCount; i++) {
135
+ const recordOffset = constructionOffset + 4 + i * MATH_GLYPH_VARIANT_RECORD_SIZE;
136
+ variants.push({
137
+ glyphId: require_sfnt.u16(bytes, recordOffset),
138
+ advanceMeasurement: require_sfnt.u16(bytes, recordOffset + 2)
139
+ });
140
+ }
141
+ return assemblyOffset === 0 ? { variants } : {
142
+ variants,
143
+ assembly: parseGlyphAssembly(bytes, constructionOffset + assemblyOffset)
144
+ };
145
+ }
146
+ function parseConstructionsForAxis(bytes, variantsOffset, coverageOffset, count, constructionArrayOffset) {
147
+ const constructions = /* @__PURE__ */ new Map();
148
+ if (coverageOffset === 0) return constructions;
149
+ for (const [glyphId, coverageIndex] of parseCoverageIndex(bytes, variantsOffset + coverageOffset)) {
150
+ if (coverageIndex >= count) continue;
151
+ constructions.set(glyphId, parseGlyphConstruction(bytes, variantsOffset + require_sfnt.u16(bytes, constructionArrayOffset + coverageIndex * 2)));
152
+ }
153
+ return constructions;
154
+ }
155
+ function parseMathVariants(bytes, mathTableOffset) {
156
+ const variantsTableOffset = require_sfnt.u16(bytes, mathTableOffset + 8);
157
+ if (variantsTableOffset === 0) return {
158
+ minConnectorOverlap: 0,
159
+ vertical: /* @__PURE__ */ new Map(),
160
+ horizontal: /* @__PURE__ */ new Map()
161
+ };
162
+ const variantsOffset = mathTableOffset + variantsTableOffset;
163
+ const verticalCoverageOffset = require_sfnt.u16(bytes, variantsOffset + 2);
164
+ const horizontalCoverageOffset = require_sfnt.u16(bytes, variantsOffset + 4);
165
+ const verticalCount = require_sfnt.u16(bytes, variantsOffset + 6);
166
+ const horizontalCount = require_sfnt.u16(bytes, variantsOffset + 8);
167
+ const verticalArrayOffset = variantsOffset + MATH_VARIANTS_HEADER_SIZE;
168
+ const horizontalArrayOffset = verticalArrayOffset + verticalCount * 2;
169
+ return {
170
+ minConnectorOverlap: require_sfnt.u16(bytes, variantsOffset),
171
+ vertical: parseConstructionsForAxis(bytes, variantsOffset, verticalCoverageOffset, verticalCount, verticalArrayOffset),
172
+ horizontal: parseConstructionsForAxis(bytes, variantsOffset, horizontalCoverageOffset, horizontalCount, horizontalArrayOffset)
173
+ };
174
+ }
108
175
  function parseMathTable(font) {
109
176
  const mathBytes = require_sfnt.sfntTableBytes(font, "MATH");
110
177
  if (mathBytes === void 0) throw new Error("math font has no MATH table");
111
178
  return {
112
179
  constants: parseMathConstants(mathBytes, 0),
113
- glyphInfo: parseMathGlyphInfo(mathBytes, 0)
180
+ glyphInfo: parseMathGlyphInfo(mathBytes, 0),
181
+ variants: parseMathVariants(mathBytes, 0)
114
182
  };
115
183
  }
116
184
  //#endregion
@@ -1,45 +1,2 @@
1
- import { t as SfntFont } from "./sfnt-V08bb5ut.cjs";
2
- //#region src/math-table.d.ts
3
- interface MathConstants {
4
- readonly scriptPercentScaleDown: number;
5
- readonly scriptScriptPercentScaleDown: number;
6
- readonly axisHeight: number;
7
- readonly subscriptShiftDown: number;
8
- readonly subscriptBaselineDropMin: number;
9
- readonly superscriptShiftUp: number;
10
- readonly superscriptShiftUpCramped: number;
11
- readonly superscriptBaselineDropMax: number;
12
- readonly subSuperscriptGapMin: number;
13
- readonly spaceAfterScript: number;
14
- readonly upperLimitGapMin: number;
15
- readonly upperLimitBaselineRiseMin: number;
16
- readonly lowerLimitGapMin: number;
17
- readonly lowerLimitBaselineDropMin: number;
18
- readonly stackTopShiftUp: number;
19
- readonly stackBottomShiftDown: number;
20
- readonly stackGapMin: number;
21
- readonly fractionNumeratorShiftUp: number;
22
- readonly fractionNumeratorDisplayStyleShiftUp: number;
23
- readonly fractionDenominatorShiftDown: number;
24
- readonly fractionDenominatorDisplayStyleShiftDown: number;
25
- readonly fractionNumeratorGapMin: number;
26
- readonly fractionRuleThickness: number;
27
- readonly fractionDenominatorGapMin: number;
28
- readonly radicalVerticalGap: number;
29
- readonly radicalRuleThickness: number;
30
- readonly radicalExtraAscender: number;
31
- readonly radicalKernBeforeDegree: number;
32
- readonly radicalKernAfterDegree: number;
33
- readonly radicalDegreeBottomRaisePercent: number;
34
- }
35
- interface MathGlyphInfo {
36
- readonly italicsCorrection: ReadonlyMap<number, number>;
37
- readonly topAccentAttachment: ReadonlyMap<number, number>;
38
- }
39
- interface MathTable {
40
- readonly constants: MathConstants;
41
- readonly glyphInfo: MathGlyphInfo;
42
- }
43
- declare function parseMathTable(font: SfntFont): MathTable;
44
- //#endregion
45
- export { MathConstants, MathGlyphInfo, MathTable, parseMathTable };
1
+ import { a as MathGlyphPart, c as MathVariants, i as MathGlyphInfo, l as parseMathTable, n as MathGlyphAssembly, o as MathGlyphVariant, r as MathGlyphConstruction, s as MathTable, t as MathConstants } from "./math-table-gFNB8DmQ.cjs";
2
+ export { MathConstants, MathGlyphAssembly, MathGlyphConstruction, MathGlyphInfo, MathGlyphPart, MathGlyphVariant, MathTable, MathVariants, parseMathTable };
@@ -1,45 +1,2 @@
1
- import { t as SfntFont } from "./sfnt-V08bb5ut.js";
2
- //#region src/math-table.d.ts
3
- interface MathConstants {
4
- readonly scriptPercentScaleDown: number;
5
- readonly scriptScriptPercentScaleDown: number;
6
- readonly axisHeight: number;
7
- readonly subscriptShiftDown: number;
8
- readonly subscriptBaselineDropMin: number;
9
- readonly superscriptShiftUp: number;
10
- readonly superscriptShiftUpCramped: number;
11
- readonly superscriptBaselineDropMax: number;
12
- readonly subSuperscriptGapMin: number;
13
- readonly spaceAfterScript: number;
14
- readonly upperLimitGapMin: number;
15
- readonly upperLimitBaselineRiseMin: number;
16
- readonly lowerLimitGapMin: number;
17
- readonly lowerLimitBaselineDropMin: number;
18
- readonly stackTopShiftUp: number;
19
- readonly stackBottomShiftDown: number;
20
- readonly stackGapMin: number;
21
- readonly fractionNumeratorShiftUp: number;
22
- readonly fractionNumeratorDisplayStyleShiftUp: number;
23
- readonly fractionDenominatorShiftDown: number;
24
- readonly fractionDenominatorDisplayStyleShiftDown: number;
25
- readonly fractionNumeratorGapMin: number;
26
- readonly fractionRuleThickness: number;
27
- readonly fractionDenominatorGapMin: number;
28
- readonly radicalVerticalGap: number;
29
- readonly radicalRuleThickness: number;
30
- readonly radicalExtraAscender: number;
31
- readonly radicalKernBeforeDegree: number;
32
- readonly radicalKernAfterDegree: number;
33
- readonly radicalDegreeBottomRaisePercent: number;
34
- }
35
- interface MathGlyphInfo {
36
- readonly italicsCorrection: ReadonlyMap<number, number>;
37
- readonly topAccentAttachment: ReadonlyMap<number, number>;
38
- }
39
- interface MathTable {
40
- readonly constants: MathConstants;
41
- readonly glyphInfo: MathGlyphInfo;
42
- }
43
- declare function parseMathTable(font: SfntFont): MathTable;
44
- //#endregion
45
- export { MathConstants, MathGlyphInfo, MathTable, parseMathTable };
1
+ import { a as MathGlyphPart, c as MathVariants, i as MathGlyphInfo, l as parseMathTable, n as MathGlyphAssembly, o as MathGlyphVariant, r as MathGlyphConstruction, s as MathTable, t as MathConstants } from "./math-table-DhPrNoPa.js";
2
+ export { MathConstants, MathGlyphAssembly, MathGlyphConstruction, MathGlyphInfo, MathGlyphPart, MathGlyphVariant, MathTable, MathVariants, parseMathTable };
@@ -104,12 +104,80 @@ function parseMathGlyphInfo(bytes, mathTableOffset) {
104
104
  topAccentAttachment: topAccentOffset === 0 ? /* @__PURE__ */ new Map() : parseGlyphValueTable(bytes, glyphInfoOffset + topAccentOffset)
105
105
  };
106
106
  }
107
+ const MATH_GLYPH_VARIANT_RECORD_SIZE = 4;
108
+ const GLYPH_PART_RECORD_SIZE = 10;
109
+ const GLYPH_PART_FLAG_EXTENDER = 1;
110
+ const MATH_VARIANTS_HEADER_SIZE = 10;
111
+ function parseGlyphAssembly(bytes, assemblyOffset) {
112
+ const partCount = u16(bytes, assemblyOffset + MATH_VALUE_RECORD_SIZE);
113
+ const parts = [];
114
+ for (let i = 0; i < partCount; i++) {
115
+ const recordOffset = assemblyOffset + MATH_VALUE_RECORD_SIZE + 2 + i * GLYPH_PART_RECORD_SIZE;
116
+ parts.push({
117
+ glyphId: u16(bytes, recordOffset),
118
+ startConnectorLength: u16(bytes, recordOffset + 2),
119
+ endConnectorLength: u16(bytes, recordOffset + 4),
120
+ fullAdvance: u16(bytes, recordOffset + 6),
121
+ isExtender: (u16(bytes, recordOffset + 8) & GLYPH_PART_FLAG_EXTENDER) !== 0
122
+ });
123
+ }
124
+ return {
125
+ italicsCorrection: i16(bytes, assemblyOffset),
126
+ parts
127
+ };
128
+ }
129
+ function parseGlyphConstruction(bytes, constructionOffset) {
130
+ const assemblyOffset = u16(bytes, constructionOffset);
131
+ const variantCount = u16(bytes, constructionOffset + 2);
132
+ const variants = [];
133
+ for (let i = 0; i < variantCount; i++) {
134
+ const recordOffset = constructionOffset + 4 + i * MATH_GLYPH_VARIANT_RECORD_SIZE;
135
+ variants.push({
136
+ glyphId: u16(bytes, recordOffset),
137
+ advanceMeasurement: u16(bytes, recordOffset + 2)
138
+ });
139
+ }
140
+ return assemblyOffset === 0 ? { variants } : {
141
+ variants,
142
+ assembly: parseGlyphAssembly(bytes, constructionOffset + assemblyOffset)
143
+ };
144
+ }
145
+ function parseConstructionsForAxis(bytes, variantsOffset, coverageOffset, count, constructionArrayOffset) {
146
+ const constructions = /* @__PURE__ */ new Map();
147
+ if (coverageOffset === 0) return constructions;
148
+ for (const [glyphId, coverageIndex] of parseCoverageIndex(bytes, variantsOffset + coverageOffset)) {
149
+ if (coverageIndex >= count) continue;
150
+ constructions.set(glyphId, parseGlyphConstruction(bytes, variantsOffset + u16(bytes, constructionArrayOffset + coverageIndex * 2)));
151
+ }
152
+ return constructions;
153
+ }
154
+ function parseMathVariants(bytes, mathTableOffset) {
155
+ const variantsTableOffset = u16(bytes, mathTableOffset + 8);
156
+ if (variantsTableOffset === 0) return {
157
+ minConnectorOverlap: 0,
158
+ vertical: /* @__PURE__ */ new Map(),
159
+ horizontal: /* @__PURE__ */ new Map()
160
+ };
161
+ const variantsOffset = mathTableOffset + variantsTableOffset;
162
+ const verticalCoverageOffset = u16(bytes, variantsOffset + 2);
163
+ const horizontalCoverageOffset = u16(bytes, variantsOffset + 4);
164
+ const verticalCount = u16(bytes, variantsOffset + 6);
165
+ const horizontalCount = u16(bytes, variantsOffset + 8);
166
+ const verticalArrayOffset = variantsOffset + MATH_VARIANTS_HEADER_SIZE;
167
+ const horizontalArrayOffset = verticalArrayOffset + verticalCount * 2;
168
+ return {
169
+ minConnectorOverlap: u16(bytes, variantsOffset),
170
+ vertical: parseConstructionsForAxis(bytes, variantsOffset, verticalCoverageOffset, verticalCount, verticalArrayOffset),
171
+ horizontal: parseConstructionsForAxis(bytes, variantsOffset, horizontalCoverageOffset, horizontalCount, horizontalArrayOffset)
172
+ };
173
+ }
107
174
  function parseMathTable(font) {
108
175
  const mathBytes = sfntTableBytes(font, "MATH");
109
176
  if (mathBytes === void 0) throw new Error("math font has no MATH table");
110
177
  return {
111
178
  constants: parseMathConstants(mathBytes, 0),
112
- glyphInfo: parseMathGlyphInfo(mathBytes, 0)
179
+ glyphInfo: parseMathGlyphInfo(mathBytes, 0),
180
+ variants: parseMathVariants(mathBytes, 0)
113
181
  };
114
182
  }
115
183
  //#endregion
@@ -41,6 +41,8 @@ interface MathGlyphMetrics {
41
41
  readonly advanceWidthPt: number;
42
42
  readonly italicCorrectionPt: number;
43
43
  readonly topAccentXPt?: number;
44
+ readonly inkAscentPt?: number;
45
+ readonly inkDescentPt?: number;
44
46
  }
45
47
  interface MathFontMetrics {
46
48
  readonly ascentPerEm: number;
@@ -41,6 +41,8 @@ interface MathGlyphMetrics {
41
41
  readonly advanceWidthPt: number;
42
42
  readonly italicCorrectionPt: number;
43
43
  readonly topAccentXPt?: number;
44
+ readonly inkAscentPt?: number;
45
+ readonly inkDescentPt?: number;
44
46
  }
45
47
  interface MathFontMetrics {
46
48
  readonly ascentPerEm: number;
@@ -1,2 +1,2 @@
1
- import { a as MathGlyphRun, c as MathStroke, i as MathGlyphMetrics, n as MathColor, o as MathLayoutItem, r as MathFontMetrics, s as MathRule, t as MathBox } from "./math-types-Ba8qAf1p.cjs";
1
+ import { a as MathGlyphRun, c as MathStroke, i as MathGlyphMetrics, n as MathColor, o as MathLayoutItem, r as MathFontMetrics, s as MathRule, t as MathBox } from "./math-types-YSQUTviw.cjs";
2
2
  export { MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphRun, MathLayoutItem, MathRule, MathStroke };
@@ -1,2 +1,2 @@
1
- import { a as MathGlyphRun, c as MathStroke, i as MathGlyphMetrics, n as MathColor, o as MathLayoutItem, r as MathFontMetrics, s as MathRule, t as MathBox } from "./math-types-Ba8qAf1p.js";
1
+ import { a as MathGlyphRun, c as MathStroke, i as MathGlyphMetrics, n as MathColor, o as MathLayoutItem, r as MathFontMetrics, s as MathRule, t as MathBox } from "./math-types-YSQUTviw.js";
2
2
  export { MathBox, MathColor, MathFontMetrics, MathGlyphMetrics, MathGlyphRun, MathLayoutItem, MathRule, MathStroke };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdf-codec",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Hand-written, dependency-minimal PDF codec: parses arbitrary real-world PDFs and generates new ones, built on document-schema.js's LayoutDocument pivot and Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {