pdf-codec 1.6.0 → 1.8.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 (120) hide show
  1. package/README.md +75 -12
  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-content-write.cjs +37 -1
  93. package/dist/math-content-write.d.cts +1 -1
  94. package/dist/math-content-write.d.ts +1 -1
  95. package/dist/math-content-write.js +38 -2
  96. package/dist/math-font-write.cjs +6 -1
  97. package/dist/math-font-write.d.cts +1 -1
  98. package/dist/math-font-write.d.ts +1 -1
  99. package/dist/math-font-write.js +6 -1
  100. package/dist/math-font.cjs +91 -18
  101. package/dist/math-font.d.cts +8 -1
  102. package/dist/math-font.d.ts +8 -1
  103. package/dist/math-font.js +91 -18
  104. package/dist/math-stretch-Bwk_bxh1.d.ts +24 -0
  105. package/dist/math-stretch-DXWjs8gL.d.cts +24 -0
  106. package/dist/math-stretch.cjs +96 -0
  107. package/dist/math-stretch.d.cts +2 -0
  108. package/dist/math-stretch.d.ts +2 -0
  109. package/dist/math-stretch.js +94 -0
  110. package/dist/math-table-DhPrNoPa.d.ts +70 -0
  111. package/dist/math-table-gFNB8DmQ.d.cts +70 -0
  112. package/dist/math-table.cjs +69 -1
  113. package/dist/math-table.d.cts +2 -45
  114. package/dist/math-table.d.ts +2 -45
  115. package/dist/math-table.js +69 -1
  116. package/dist/{math-types-Ba8qAf1p.d.ts → math-types-BZkWO5Ow.d.cts} +30 -2
  117. package/dist/{math-types-Ba8qAf1p.d.cts → math-types-Bq7tyV4g.d.ts} +30 -2
  118. package/dist/math-types.d.cts +3 -2
  119. package/dist/math-types.d.ts +3 -2
  120. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ import { r as MathGlyphConstruction } from "./math-table-DhPrNoPa.js";
2
+ //#region src/math-stretch.d.ts
3
+ type MathStretchAxis = 'vertical' | 'horizontal';
4
+ interface MathStretchPlacement {
5
+ readonly glyphId: number;
6
+ readonly offset: number;
7
+ readonly advance: number;
8
+ }
9
+ interface MathStretchConstruction {
10
+ readonly kind: 'base' | 'variant' | 'assembly';
11
+ readonly axis: MathStretchAxis;
12
+ readonly size: number;
13
+ readonly italicsCorrection: number;
14
+ readonly placements: readonly MathStretchPlacement[];
15
+ }
16
+ interface MathStretchOptions {
17
+ readonly axis: MathStretchAxis;
18
+ readonly targetSize: number;
19
+ readonly minConnectorOverlap: number;
20
+ }
21
+ declare function assembleStretchyGlyph(construction: MathGlyphConstruction, options: MathStretchOptions): MathStretchConstruction | undefined;
22
+ declare function scaleMathStretchConstruction(construction: MathStretchConstruction, factor: number): MathStretchConstruction;
23
+ //#endregion
24
+ export { assembleStretchyGlyph as a, MathStretchPlacement as i, MathStretchConstruction as n, scaleMathStretchConstruction as o, MathStretchOptions as r, MathStretchAxis as t };
@@ -0,0 +1,24 @@
1
+ import { r as MathGlyphConstruction } from "./math-table-gFNB8DmQ.cjs";
2
+ //#region src/math-stretch.d.ts
3
+ type MathStretchAxis = 'vertical' | 'horizontal';
4
+ interface MathStretchPlacement {
5
+ readonly glyphId: number;
6
+ readonly offset: number;
7
+ readonly advance: number;
8
+ }
9
+ interface MathStretchConstruction {
10
+ readonly kind: 'base' | 'variant' | 'assembly';
11
+ readonly axis: MathStretchAxis;
12
+ readonly size: number;
13
+ readonly italicsCorrection: number;
14
+ readonly placements: readonly MathStretchPlacement[];
15
+ }
16
+ interface MathStretchOptions {
17
+ readonly axis: MathStretchAxis;
18
+ readonly targetSize: number;
19
+ readonly minConnectorOverlap: number;
20
+ }
21
+ declare function assembleStretchyGlyph(construction: MathGlyphConstruction, options: MathStretchOptions): MathStretchConstruction | undefined;
22
+ declare function scaleMathStretchConstruction(construction: MathStretchConstruction, factor: number): MathStretchConstruction;
23
+ //#endregion
24
+ export { assembleStretchyGlyph as a, MathStretchPlacement as i, MathStretchConstruction as n, scaleMathStretchConstruction as o, MathStretchOptions as r, MathStretchAxis as t };
@@ -0,0 +1,96 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/math-stretch.ts
3
+ function sumBy(items, value) {
4
+ return items.reduce((total, item) => total + value(item), 0);
5
+ }
6
+ function requiredRepeatCount(fixed, extenders, targetSize, minConnectorOverlap) {
7
+ const minimumRepeat = fixed.length === 0 ? 1 : 0;
8
+ if (extenders.length === 0) return minimumRepeat;
9
+ const growthPerRepeat = sumBy(extenders, (part) => part.fullAdvance) - extenders.length * minConnectorOverlap;
10
+ if (growthPerRepeat <= 0) return minimumRepeat;
11
+ const shortfall = targetSize - sumBy(fixed, (part) => part.fullAdvance) + (fixed.length - 1) * minConnectorOverlap;
12
+ return Math.max(minimumRepeat, Math.ceil(shortfall / growthPerRepeat));
13
+ }
14
+ function expandParts(parts, repeatCount) {
15
+ const expanded = [];
16
+ for (const part of parts) for (let i = 0; i < (part.isExtender ? repeatCount : 1); i++) expanded.push(part);
17
+ return expanded;
18
+ }
19
+ function maximumOverlap(expanded) {
20
+ let overlap = Number.POSITIVE_INFINITY;
21
+ for (let i = 0; i + 1 < expanded.length; i++) overlap = Math.min(overlap, expanded[i].endConnectorLength, expanded[i + 1].startConnectorLength);
22
+ for (let i = 0; i < expanded.length; i++) {
23
+ const joins = (i === 0 ? 0 : 1) + (i === expanded.length - 1 ? 0 : 1);
24
+ if (joins > 0) overlap = Math.min(overlap, expanded[i].fullAdvance / joins);
25
+ }
26
+ return overlap;
27
+ }
28
+ function assembleFromParts(assembly, options) {
29
+ const fixed = assembly.parts.filter((part) => !part.isExtender);
30
+ const extenders = assembly.parts.filter((part) => part.isExtender);
31
+ const expanded = expandParts(assembly.parts, requiredRepeatCount(fixed, extenders, options.targetSize, options.minConnectorOverlap));
32
+ if (expanded.length === 0) return;
33
+ const joins = expanded.length - 1;
34
+ const maxOverlap = maximumOverlap(expanded);
35
+ const minOverlap = Math.min(options.minConnectorOverlap, maxOverlap);
36
+ const totalAdvance = sumBy(expanded, (part) => part.fullAdvance);
37
+ const exactOverlap = joins === 0 ? minOverlap : (totalAdvance - options.targetSize) / joins;
38
+ const overlap = Math.min(Math.max(exactOverlap, minOverlap), maxOverlap);
39
+ const placements = [];
40
+ let offset = 0;
41
+ for (const part of expanded) {
42
+ placements.push({
43
+ glyphId: part.glyphId,
44
+ offset,
45
+ advance: part.fullAdvance
46
+ });
47
+ offset += part.fullAdvance - overlap;
48
+ }
49
+ return {
50
+ kind: "assembly",
51
+ axis: options.axis,
52
+ size: totalAdvance - joins * overlap,
53
+ italicsCorrection: assembly.italicsCorrection,
54
+ placements
55
+ };
56
+ }
57
+ function fromVariant(variant, isBaseGlyph, axis) {
58
+ return {
59
+ kind: isBaseGlyph ? "base" : "variant",
60
+ axis,
61
+ size: variant.advanceMeasurement,
62
+ italicsCorrection: 0,
63
+ placements: [{
64
+ glyphId: variant.glyphId,
65
+ offset: 0,
66
+ advance: variant.advanceMeasurement
67
+ }]
68
+ };
69
+ }
70
+ function assembleStretchyGlyph(construction, options) {
71
+ const variants = construction.variants;
72
+ const reaching = variants.findIndex((variant) => variant.advanceMeasurement >= options.targetSize);
73
+ if (reaching !== -1) return fromVariant(variants[reaching], reaching === 0, options.axis);
74
+ if (construction.assembly !== void 0) {
75
+ const assembled = assembleFromParts(construction.assembly, options);
76
+ if (assembled !== void 0) return assembled;
77
+ }
78
+ const largest = variants[variants.length - 1];
79
+ return largest === void 0 ? void 0 : fromVariant(largest, variants.length === 1, options.axis);
80
+ }
81
+ function scaleMathStretchConstruction(construction, factor) {
82
+ return {
83
+ kind: construction.kind,
84
+ axis: construction.axis,
85
+ size: construction.size * factor,
86
+ italicsCorrection: construction.italicsCorrection * factor,
87
+ placements: construction.placements.map((placement) => ({
88
+ glyphId: placement.glyphId,
89
+ offset: placement.offset * factor,
90
+ advance: placement.advance * factor
91
+ }))
92
+ };
93
+ }
94
+ //#endregion
95
+ exports.assembleStretchyGlyph = assembleStretchyGlyph;
96
+ exports.scaleMathStretchConstruction = scaleMathStretchConstruction;
@@ -0,0 +1,2 @@
1
+ import { a as assembleStretchyGlyph, i as MathStretchPlacement, n as MathStretchConstruction, o as scaleMathStretchConstruction, r as MathStretchOptions, t as MathStretchAxis } from "./math-stretch-DXWjs8gL.cjs";
2
+ export { MathStretchAxis, MathStretchConstruction, MathStretchOptions, MathStretchPlacement, assembleStretchyGlyph, scaleMathStretchConstruction };
@@ -0,0 +1,2 @@
1
+ import { a as assembleStretchyGlyph, i as MathStretchPlacement, n as MathStretchConstruction, o as scaleMathStretchConstruction, r as MathStretchOptions, t as MathStretchAxis } from "./math-stretch-Bwk_bxh1.js";
2
+ export { MathStretchAxis, MathStretchConstruction, MathStretchOptions, MathStretchPlacement, assembleStretchyGlyph, scaleMathStretchConstruction };
@@ -0,0 +1,94 @@
1
+ //#region src/math-stretch.ts
2
+ function sumBy(items, value) {
3
+ return items.reduce((total, item) => total + value(item), 0);
4
+ }
5
+ function requiredRepeatCount(fixed, extenders, targetSize, minConnectorOverlap) {
6
+ const minimumRepeat = fixed.length === 0 ? 1 : 0;
7
+ if (extenders.length === 0) return minimumRepeat;
8
+ const growthPerRepeat = sumBy(extenders, (part) => part.fullAdvance) - extenders.length * minConnectorOverlap;
9
+ if (growthPerRepeat <= 0) return minimumRepeat;
10
+ const shortfall = targetSize - sumBy(fixed, (part) => part.fullAdvance) + (fixed.length - 1) * minConnectorOverlap;
11
+ return Math.max(minimumRepeat, Math.ceil(shortfall / growthPerRepeat));
12
+ }
13
+ function expandParts(parts, repeatCount) {
14
+ const expanded = [];
15
+ for (const part of parts) for (let i = 0; i < (part.isExtender ? repeatCount : 1); i++) expanded.push(part);
16
+ return expanded;
17
+ }
18
+ function maximumOverlap(expanded) {
19
+ let overlap = Number.POSITIVE_INFINITY;
20
+ for (let i = 0; i + 1 < expanded.length; i++) overlap = Math.min(overlap, expanded[i].endConnectorLength, expanded[i + 1].startConnectorLength);
21
+ for (let i = 0; i < expanded.length; i++) {
22
+ const joins = (i === 0 ? 0 : 1) + (i === expanded.length - 1 ? 0 : 1);
23
+ if (joins > 0) overlap = Math.min(overlap, expanded[i].fullAdvance / joins);
24
+ }
25
+ return overlap;
26
+ }
27
+ function assembleFromParts(assembly, options) {
28
+ const fixed = assembly.parts.filter((part) => !part.isExtender);
29
+ const extenders = assembly.parts.filter((part) => part.isExtender);
30
+ const expanded = expandParts(assembly.parts, requiredRepeatCount(fixed, extenders, options.targetSize, options.minConnectorOverlap));
31
+ if (expanded.length === 0) return;
32
+ const joins = expanded.length - 1;
33
+ const maxOverlap = maximumOverlap(expanded);
34
+ const minOverlap = Math.min(options.minConnectorOverlap, maxOverlap);
35
+ const totalAdvance = sumBy(expanded, (part) => part.fullAdvance);
36
+ const exactOverlap = joins === 0 ? minOverlap : (totalAdvance - options.targetSize) / joins;
37
+ const overlap = Math.min(Math.max(exactOverlap, minOverlap), maxOverlap);
38
+ const placements = [];
39
+ let offset = 0;
40
+ for (const part of expanded) {
41
+ placements.push({
42
+ glyphId: part.glyphId,
43
+ offset,
44
+ advance: part.fullAdvance
45
+ });
46
+ offset += part.fullAdvance - overlap;
47
+ }
48
+ return {
49
+ kind: "assembly",
50
+ axis: options.axis,
51
+ size: totalAdvance - joins * overlap,
52
+ italicsCorrection: assembly.italicsCorrection,
53
+ placements
54
+ };
55
+ }
56
+ function fromVariant(variant, isBaseGlyph, axis) {
57
+ return {
58
+ kind: isBaseGlyph ? "base" : "variant",
59
+ axis,
60
+ size: variant.advanceMeasurement,
61
+ italicsCorrection: 0,
62
+ placements: [{
63
+ glyphId: variant.glyphId,
64
+ offset: 0,
65
+ advance: variant.advanceMeasurement
66
+ }]
67
+ };
68
+ }
69
+ function assembleStretchyGlyph(construction, options) {
70
+ const variants = construction.variants;
71
+ const reaching = variants.findIndex((variant) => variant.advanceMeasurement >= options.targetSize);
72
+ if (reaching !== -1) return fromVariant(variants[reaching], reaching === 0, options.axis);
73
+ if (construction.assembly !== void 0) {
74
+ const assembled = assembleFromParts(construction.assembly, options);
75
+ if (assembled !== void 0) return assembled;
76
+ }
77
+ const largest = variants[variants.length - 1];
78
+ return largest === void 0 ? void 0 : fromVariant(largest, variants.length === 1, options.axis);
79
+ }
80
+ function scaleMathStretchConstruction(construction, factor) {
81
+ return {
82
+ kind: construction.kind,
83
+ axis: construction.axis,
84
+ size: construction.size * factor,
85
+ italicsCorrection: construction.italicsCorrection * factor,
86
+ placements: construction.placements.map((placement) => ({
87
+ glyphId: placement.glyphId,
88
+ offset: placement.offset * factor,
89
+ advance: placement.advance * factor
90
+ }))
91
+ };
92
+ }
93
+ //#endregion
94
+ export { assembleStretchyGlyph, scaleMathStretchConstruction };
@@ -0,0 +1,70 @@
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 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 };
@@ -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