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
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@ import { crc32 } from "./bytes/crc32.js";
3
3
  import { DeflateLevel, InflateResult, MAX_INFLATE_OUTPUT_BYTES, deflate, inflate, inflateTolerant } from "./bytes/flate.js";
4
4
  import { ByteReader, isAsciiWhitespace } from "./bytes/reader.js";
5
5
  import { ByteWriter, concatBytes } from "./bytes/writer.js";
6
+ import { t as GlyphInkBounds } from "./glyph-bounds-BV_Z40KS.js";
6
7
  import { NOOP_DIAGNOSTIC_SINK, PdfDiagnostic, PdfDiagnosticSeverity, PdfDiagnosticSink, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError } from "./diagnostics.js";
7
8
  import { PdfBytesSchema, pdfCodec } from "./codec.js";
8
9
  import { n as EmbeddedFaceMetrics, r as EmbeddedFaceSubstitution, t as EmbeddedFace } from "./embedded-font-CbqkKgBl.js";
@@ -11,15 +12,23 @@ import { DEFAULT_VERTICAL_METRIC_POLICY, FontMeasurerOptions, StandardFontMeasur
11
12
  import { WinAnsiSubstitution } from "./winansi.js";
12
13
  import { i as Point, u as rotatePointAboutCenter } from "./matrix-BHzJESll.js";
13
14
  import { ResolvedFont, resolveStandardFont } from "./fonts.js";
14
- 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";
15
+ 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";
15
16
  import { PositionedFormula } from "./formula.js";
16
17
  import { CcittFaxImage, CcittFaxOptions, decodeCcittFax } from "./image/ccitt.js";
18
+ import { n as Jbig2UnsupportedError, t as Jbig2ParseError } from "./jbig2-errors-Bj6MPxrx.js";
19
+ import { Jbig2DecodeOptions, Jbig2Image, decodeJbig2Embedded } from "./image/jbig2.js";
20
+ import { Jp2ChannelDefinition, Jp2ColourSpace, Jp2Container, Jp2ImageHeader, looksLikeBareCodestream, parseJp2Container } from "./image/jp2-boxes.js";
17
21
  import { JpegInfo, readJpegInfo } from "./image/jpeg-info.js";
22
+ import { Jpeg2000ProgressionOrder, Jpeg2000QuantizationStyle, Jpeg2000Transform } from "./image/jpeg2000-codestream.js";
23
+ import { Jpeg2000ParseError, Jpeg2000UnsupportedError } from "./image/jpeg2000-errors.js";
24
+ import { Jpeg2000ComponentMetadata, Jpeg2000DecodeOptions, Jpeg2000Image, Jpeg2000Metadata, decodeJpeg2000, readJpeg2000Metadata } from "./image/jpeg2000.js";
18
25
  import { PngDecodeOptions, RawImage, decodePng } from "./image/png-decode.js";
19
26
  import { PngEncodeOptions, encodePng } from "./image/png-encode.js";
20
27
  import { PngFilterType, filterScanlines, unfilterScanlines } from "./image/png-filter.js";
21
28
  import { ReadPdfOptions, readPdf } from "./read.js";
22
29
  import { WritePdfOptions, writePdf } from "./write.js";
30
+ import { a as MathGlyphPart, c as MathVariants, n as MathGlyphAssembly, o as MathGlyphVariant, r as MathGlyphConstruction } from "./math-table-DhPrNoPa.js";
31
+ 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";
23
32
  import { LoadedMathFont, MathFont, MathFontDescriptorMetrics, loadMathFont } from "./math-font.js";
24
33
  import { StyledFragment, StyledRun, WrapOptions, WrappedLine, wrapRunsToWidth } from "./text-layout.js";
25
- export { ByteReader, ByteWriter, type CcittFaxImage, type CcittFaxOptions, DEFAULT_VERTICAL_METRIC_POLICY, type DeflateLevel, type EmbeddedFace, type EmbeddedFaceMetrics, type EmbeddedFaceSubstitution, type FontMeasurerOptions, type FontMetrics, type FontRegistry, type FontRegistryOptions, type FontSubstitution, type InflateResult, type JpegInfo, type LoadedMathFont, MAX_INFLATE_OUTPUT_BYTES, type MathBox, type MathColor, type MathFont, type MathFontDescriptorMetrics, type MathFontMetrics, type MathGlyphMetrics, type MathGlyphRun, type MathLayoutItem, type MathRule, type MathStroke, NOOP_DIAGNOSTIC_SINK, PdfBytesSchema, type PdfDiagnostic, type PdfDiagnosticSeverity, type PdfDiagnosticSink, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError, type PngDecodeOptions, type PngEncodeOptions, type PngFilterType, type Point, type PositionedFormula, type ProvidedFont, type RawImage, type ReadPdfOptions, type ResolvedFace, type ResolvedFont, STANDARD_METRICS, type StandardFontMeasurerOptions, type StandardFontName, type StyledFragment, type StyledRun, type TextMeasurer, type UnderlineMetrics, type VerticalMetricPolicy, type WinAnsiSubstitution, type WrapOptions, type WrappedLine, type WritePdfOptions, concatBytes, crc32, createFontMeasurer, createFontRegistry, createStandardFontMeasurer, decodeCcittFax, decodePng, deflate, encodePng, filterScanlines, inflate, inflateTolerant, isAsciiWhitespace, loadMathFont, pdfCodec, readJpegInfo, readPdf, resolveFaceWithRegistry, resolveStandardFont, rotatePointAboutCenter, unfilterScanlines, wrapRunsToWidth, writePdf };
34
+ export { ByteReader, ByteWriter, type CcittFaxImage, type CcittFaxOptions, DEFAULT_VERTICAL_METRIC_POLICY, type DeflateLevel, type EmbeddedFace, type EmbeddedFaceMetrics, type EmbeddedFaceSubstitution, type FontMeasurerOptions, type FontMetrics, type FontRegistry, type FontRegistryOptions, type FontSubstitution, type GlyphInkBounds, type InflateResult, type Jbig2DecodeOptions, type Jbig2Image, Jbig2ParseError, Jbig2UnsupportedError, type Jp2ChannelDefinition, type Jp2ColourSpace, type Jp2Container, type Jp2ImageHeader, type Jpeg2000ComponentMetadata, type Jpeg2000DecodeOptions, type Jpeg2000Image, type Jpeg2000Metadata, Jpeg2000ParseError, type Jpeg2000ProgressionOrder, type Jpeg2000QuantizationStyle, type Jpeg2000Transform, Jpeg2000UnsupportedError, type JpegInfo, type LoadedMathFont, MAX_INFLATE_OUTPUT_BYTES, type MathBox, type MathColor, type MathFont, type MathFontDescriptorMetrics, type MathFontMetrics, type MathGlyphAssembly, type MathGlyphConstruction, type MathGlyphMetrics, type MathGlyphPart, type MathGlyphRun, type MathGlyphVariant, type MathLayoutItem, type MathRule, type MathStretchAxis, type MathStretchConstruction, type MathStretchOptions, type MathStretchPlacement, type MathStroke, type MathVariants, NOOP_DIAGNOSTIC_SINK, PdfBytesSchema, type PdfDiagnostic, type PdfDiagnosticSeverity, type PdfDiagnosticSink, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError, type PngDecodeOptions, type PngEncodeOptions, type PngFilterType, type Point, type PositionedFormula, type ProvidedFont, type RawImage, type ReadPdfOptions, type ResolvedFace, type ResolvedFont, STANDARD_METRICS, type StandardFontMeasurerOptions, type StandardFontName, type StyledFragment, type StyledRun, type TextMeasurer, type UnderlineMetrics, type VerticalMetricPolicy, type WinAnsiSubstitution, type WrapOptions, type WrappedLine, type WritePdfOptions, assembleStretchyGlyph, concatBytes, crc32, createFontMeasurer, createFontRegistry, createStandardFontMeasurer, decodeCcittFax, decodeJbig2Embedded, decodeJpeg2000, decodePng, deflate, encodePng, filterScanlines, inflate, inflateTolerant, isAsciiWhitespace, loadMathFont, looksLikeBareCodestream, parseJp2Container, pdfCodec, readJpeg2000Metadata, readJpegInfo, readPdf, resolveFaceWithRegistry, resolveStandardFont, rotatePointAboutCenter, scaleMathStretchConstruction, unfilterScanlines, wrapRunsToWidth, writePdf };
package/dist/index.js CHANGED
@@ -5,17 +5,23 @@ import { ByteWriter, concatBytes } from "./bytes/writer.js";
5
5
  import { NOOP_DIAGNOSTIC_SINK, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError } from "./diagnostics.js";
6
6
  import { MAX_INFLATE_OUTPUT_BYTES, deflate, inflate, inflateTolerant } from "./bytes/flate.js";
7
7
  import { decodeCcittFax } from "./image/ccitt.js";
8
+ import { Jbig2ParseError, Jbig2UnsupportedError } from "./image/jbig2-errors.js";
9
+ import { decodeJbig2Embedded } from "./image/jbig2.js";
8
10
  import { filterScanlines, unfilterScanlines } from "./image/png-filter.js";
9
11
  import { resolveStandardFont } from "./fonts.js";
10
12
  import { encodePng } from "./image/png-encode.js";
11
13
  import { readJpegInfo } from "./image/jpeg-info.js";
14
+ import { Jpeg2000ParseError, Jpeg2000UnsupportedError } from "./image/jpeg2000-errors.js";
15
+ import { looksLikeBareCodestream, parseJp2Container } from "./image/jp2-boxes.js";
16
+ import { decodeJpeg2000, readJpeg2000Metadata } from "./image/jpeg2000.js";
12
17
  import { rotatePointAboutCenter } from "./matrix.js";
13
18
  import { decodePng } from "./image/png-decode.js";
14
19
  import { createFontRegistry, resolveFaceWithRegistry } from "./font-registry.js";
20
+ import { assembleStretchyGlyph, scaleMathStretchConstruction } from "./math-stretch.js";
15
21
  import { loadMathFont } from "./math-font.js";
16
22
  import { DEFAULT_VERTICAL_METRIC_POLICY, createFontMeasurer, createStandardFontMeasurer } from "./measure.js";
17
23
  import { writePdf } from "./write.js";
18
24
  import { readPdf } from "./read.js";
19
25
  import { PdfBytesSchema, pdfCodec } from "./codec.js";
20
26
  import { wrapRunsToWidth } from "./text-layout.js";
21
- export { ByteReader, ByteWriter, DEFAULT_VERTICAL_METRIC_POLICY, MAX_INFLATE_OUTPUT_BYTES, NOOP_DIAGNOSTIC_SINK, PdfBytesSchema, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError, STANDARD_METRICS, concatBytes, crc32, createFontMeasurer, createFontRegistry, createStandardFontMeasurer, decodeCcittFax, decodePng, deflate, encodePng, filterScanlines, inflate, inflateTolerant, isAsciiWhitespace, loadMathFont, pdfCodec, readJpegInfo, readPdf, resolveFaceWithRegistry, resolveStandardFont, rotatePointAboutCenter, unfilterScanlines, wrapRunsToWidth, writePdf };
27
+ export { ByteReader, ByteWriter, DEFAULT_VERTICAL_METRIC_POLICY, Jbig2ParseError, Jbig2UnsupportedError, Jpeg2000ParseError, Jpeg2000UnsupportedError, MAX_INFLATE_OUTPUT_BYTES, NOOP_DIAGNOSTIC_SINK, PdfBytesSchema, PdfEncryptedError, PdfParseError, PdfPasswordRequiredError, STANDARD_METRICS, assembleStretchyGlyph, concatBytes, crc32, createFontMeasurer, createFontRegistry, createStandardFontMeasurer, decodeCcittFax, decodeJbig2Embedded, decodeJpeg2000, decodePng, deflate, encodePng, filterScanlines, inflate, inflateTolerant, isAsciiWhitespace, loadMathFont, looksLikeBareCodestream, parseJp2Container, pdfCodec, readJpeg2000Metadata, readJpegInfo, readPdf, resolveFaceWithRegistry, resolveStandardFont, rotatePointAboutCenter, scaleMathStretchConstruction, unfilterScanlines, wrapRunsToWidth, writePdf };
@@ -0,0 +1,9 @@
1
+ //#region src/image/jbig2-errors.d.ts
2
+ declare class Jbig2ParseError extends Error {
3
+ constructor(message: string);
4
+ }
5
+ declare class Jbig2UnsupportedError extends Error {
6
+ constructor(message: string);
7
+ }
8
+ //#endregion
9
+ export { Jbig2UnsupportedError as n, Jbig2ParseError as t };
@@ -0,0 +1,9 @@
1
+ //#region src/image/jbig2-errors.d.ts
2
+ declare class Jbig2ParseError extends Error {
3
+ constructor(message: string);
4
+ }
5
+ declare class Jbig2UnsupportedError extends Error {
6
+ constructor(message: string);
7
+ }
8
+ //#endregion
9
+ export { Jbig2UnsupportedError as n, Jbig2ParseError as t };
@@ -1,15 +1,17 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
2
  const require_sfnt = require("./sfnt.cjs");
3
+ const require_cff_bounds = require("./cff-bounds.cjs");
3
4
  const require_cmap_table = require("./cmap-table.cjs");
4
5
  const require_util_base64 = require("./util/base64.cjs");
5
6
  const require_hmtx_table = require("./hmtx-table.cjs");
6
7
  const require_assets_stix_two_math_font = require("./assets/stix-two-math-font.cjs");
8
+ const require_math_stretch = require("./math-stretch.cjs");
7
9
  const require_math_table = require("./math-table.cjs");
8
10
  //#region src/math-font.ts
9
11
  function toPt(designUnits, unitsPerEm, sizePt) {
10
12
  return designUnits / unitsPerEm * sizePt;
11
13
  }
12
- function metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt) {
14
+ function metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt) {
13
15
  const c = math.constants;
14
16
  const pt = (designUnits) => toPt(designUnits, unitsPerEm, sizePt);
15
17
  return {
@@ -52,10 +54,13 @@ function metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentD
52
54
  const advanceWidthPt = toPt(hmtx.advanceWidth(glyphId), unitsPerEm, glyphSizePt);
53
55
  const italicCorrectionDesignUnits = math.glyphInfo.italicsCorrection.get(glyphId) ?? 0;
54
56
  const topAccentDesignUnits = math.glyphInfo.topAccentAttachment.get(glyphId);
57
+ const ink = inkBounds?.bounds(glyphId);
55
58
  return {
56
59
  advanceWidthPt,
57
60
  italicCorrectionPt: toPt(italicCorrectionDesignUnits, unitsPerEm, glyphSizePt),
58
- topAccentXPt: topAccentDesignUnits === void 0 ? void 0 : toPt(topAccentDesignUnits, unitsPerEm, glyphSizePt)
61
+ topAccentXPt: topAccentDesignUnits === void 0 ? void 0 : toPt(topAccentDesignUnits, unitsPerEm, glyphSizePt),
62
+ inkAscentPt: ink === void 0 ? void 0 : toPt(ink.yMax, unitsPerEm, glyphSizePt),
63
+ inkDescentPt: ink === void 0 ? void 0 : toPt(-ink.yMin, unitsPerEm, glyphSizePt)
59
64
  };
60
65
  }
61
66
  };
@@ -81,23 +86,43 @@ function loadMathFont() {
81
86
  if (cmap === void 0) throw new Error("embedded math font has no readable cmap subtable");
82
87
  const hmtx = require_hmtx_table.parseHmtx(sfnt);
83
88
  const math = require_math_table.parseMathTable(sfnt);
84
- cached = {
85
- font: {
86
- metrics: metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, unitsPerEm),
87
- cffBytes,
88
- descriptor: {
89
- unitsPerEm,
90
- ascent: ascentDesignUnits,
91
- descent: descentDesignUnits,
92
- capHeight,
93
- bboxMin,
94
- bboxMax,
95
- italicAngle: 0
96
- },
97
- glyphId: (codePoint) => cmap(codePoint),
98
- glyphSpaceWidth: (glyphId) => hmtx.advanceWidth(glyphId) * 1e3 / unitsPerEm
89
+ const inkBounds = require_cff_bounds.parseCffGlyphBounds(cffBytes);
90
+ const font = {
91
+ metrics: metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, unitsPerEm),
92
+ cffBytes,
93
+ descriptor: {
94
+ unitsPerEm,
95
+ ascent: ascentDesignUnits,
96
+ descent: descentDesignUnits,
97
+ capHeight,
98
+ bboxMin,
99
+ bboxMax,
100
+ italicAngle: 0
99
101
  },
100
- metricsAt: (sizePt) => metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt)
102
+ glyphId: (codePoint) => cmap(codePoint),
103
+ glyphSpaceWidth: (glyphId) => hmtx.advanceWidth(glyphId) * 1e3 / unitsPerEm,
104
+ glyphInkBounds: (glyphId) => inkBounds?.bounds(glyphId),
105
+ minConnectorOverlap: math.variants.minConnectorOverlap,
106
+ stretchyConstruction: (codePoint, axis) => {
107
+ const glyphId = cmap(codePoint);
108
+ if (glyphId === void 0) return;
109
+ return (axis === "vertical" ? math.variants.vertical : math.variants.horizontal).get(glyphId);
110
+ }
111
+ };
112
+ cached = {
113
+ font,
114
+ metricsAt: (sizePt) => metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt),
115
+ stretchGlyph: (codePoint, axis, targetSizePt, sizePt) => {
116
+ const construction = font.stretchyConstruction(codePoint, axis);
117
+ if (construction === void 0) return;
118
+ const designUnitsPerPt = unitsPerEm / sizePt;
119
+ const assembled = require_math_stretch.assembleStretchyGlyph(construction, {
120
+ axis,
121
+ targetSize: targetSizePt * designUnitsPerPt,
122
+ minConnectorOverlap: math.variants.minConnectorOverlap
123
+ });
124
+ return assembled === void 0 ? void 0 : require_math_stretch.scaleMathStretchConstruction(assembled, 1 / designUnitsPerPt);
125
+ }
101
126
  };
102
127
  return cached;
103
128
  }
@@ -1,4 +1,7 @@
1
- import { r as MathFontMetrics } from "./math-types-Ba8qAf1p.cjs";
1
+ import { t as GlyphInkBounds } from "./glyph-bounds-BV_Z40KS.cjs";
2
+ import { r as MathFontMetrics } from "./math-types-YSQUTviw.cjs";
3
+ import { r as MathGlyphConstruction } from "./math-table-gFNB8DmQ.cjs";
4
+ import { n as MathStretchConstruction, t as MathStretchAxis } from "./math-stretch-DXWjs8gL.cjs";
2
5
  //#region src/math-font.d.ts
3
6
  interface MathFontDescriptorMetrics {
4
7
  readonly unitsPerEm: number;
@@ -15,10 +18,14 @@ interface MathFont {
15
18
  readonly descriptor: MathFontDescriptorMetrics;
16
19
  glyphId(codePoint: number): number | undefined;
17
20
  glyphSpaceWidth(glyphId: number): number;
21
+ glyphInkBounds(glyphId: number): GlyphInkBounds | undefined;
22
+ readonly minConnectorOverlap: number;
23
+ stretchyConstruction(codePoint: number, axis: MathStretchAxis): MathGlyphConstruction | undefined;
18
24
  }
19
25
  interface LoadedMathFont {
20
26
  readonly font: MathFont;
21
27
  readonly metricsAt: (sizePt: number) => MathFontMetrics;
28
+ readonly stretchGlyph: (codePoint: number, axis: MathStretchAxis, targetSizePt: number, sizePt: number) => MathStretchConstruction | undefined;
22
29
  }
23
30
  declare function loadMathFont(): LoadedMathFont;
24
31
  //#endregion
@@ -1,4 +1,7 @@
1
- import { r as MathFontMetrics } from "./math-types-Ba8qAf1p.js";
1
+ import { t as GlyphInkBounds } from "./glyph-bounds-BV_Z40KS.js";
2
+ import { r as MathFontMetrics } from "./math-types-YSQUTviw.js";
3
+ import { r as MathGlyphConstruction } from "./math-table-DhPrNoPa.js";
4
+ import { n as MathStretchConstruction, t as MathStretchAxis } from "./math-stretch-Bwk_bxh1.js";
2
5
  //#region src/math-font.d.ts
3
6
  interface MathFontDescriptorMetrics {
4
7
  readonly unitsPerEm: number;
@@ -15,10 +18,14 @@ interface MathFont {
15
18
  readonly descriptor: MathFontDescriptorMetrics;
16
19
  glyphId(codePoint: number): number | undefined;
17
20
  glyphSpaceWidth(glyphId: number): number;
21
+ glyphInkBounds(glyphId: number): GlyphInkBounds | undefined;
22
+ readonly minConnectorOverlap: number;
23
+ stretchyConstruction(codePoint: number, axis: MathStretchAxis): MathGlyphConstruction | undefined;
18
24
  }
19
25
  interface LoadedMathFont {
20
26
  readonly font: MathFont;
21
27
  readonly metricsAt: (sizePt: number) => MathFontMetrics;
28
+ readonly stretchGlyph: (codePoint: number, axis: MathStretchAxis, targetSizePt: number, sizePt: number) => MathStretchConstruction | undefined;
22
29
  }
23
30
  declare function loadMathFont(): LoadedMathFont;
24
31
  //#endregion
package/dist/math-font.js CHANGED
@@ -1,14 +1,16 @@
1
1
  import { i16, parseSfnt, sfntTableBytes, u16 } from "./sfnt.js";
2
+ import { parseCffGlyphBounds } from "./cff-bounds.js";
2
3
  import { buildCmapLookup } from "./cmap-table.js";
3
4
  import { base64ToBytes } from "./util/base64.js";
4
5
  import { parseHmtx } from "./hmtx-table.js";
5
6
  import { STIX_TWO_MATH_FONT_BASE64 } from "./assets/stix-two-math-font.js";
7
+ import { assembleStretchyGlyph, scaleMathStretchConstruction } from "./math-stretch.js";
6
8
  import { parseMathTable } from "./math-table.js";
7
9
  //#region src/math-font.ts
8
10
  function toPt(designUnits, unitsPerEm, sizePt) {
9
11
  return designUnits / unitsPerEm * sizePt;
10
12
  }
11
- function metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt) {
13
+ function metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt) {
12
14
  const c = math.constants;
13
15
  const pt = (designUnits) => toPt(designUnits, unitsPerEm, sizePt);
14
16
  return {
@@ -51,10 +53,13 @@ function metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentD
51
53
  const advanceWidthPt = toPt(hmtx.advanceWidth(glyphId), unitsPerEm, glyphSizePt);
52
54
  const italicCorrectionDesignUnits = math.glyphInfo.italicsCorrection.get(glyphId) ?? 0;
53
55
  const topAccentDesignUnits = math.glyphInfo.topAccentAttachment.get(glyphId);
56
+ const ink = inkBounds?.bounds(glyphId);
54
57
  return {
55
58
  advanceWidthPt,
56
59
  italicCorrectionPt: toPt(italicCorrectionDesignUnits, unitsPerEm, glyphSizePt),
57
- topAccentXPt: topAccentDesignUnits === void 0 ? void 0 : toPt(topAccentDesignUnits, unitsPerEm, glyphSizePt)
60
+ topAccentXPt: topAccentDesignUnits === void 0 ? void 0 : toPt(topAccentDesignUnits, unitsPerEm, glyphSizePt),
61
+ inkAscentPt: ink === void 0 ? void 0 : toPt(ink.yMax, unitsPerEm, glyphSizePt),
62
+ inkDescentPt: ink === void 0 ? void 0 : toPt(-ink.yMin, unitsPerEm, glyphSizePt)
58
63
  };
59
64
  }
60
65
  };
@@ -80,23 +85,43 @@ function loadMathFont() {
80
85
  if (cmap === void 0) throw new Error("embedded math font has no readable cmap subtable");
81
86
  const hmtx = parseHmtx(sfnt);
82
87
  const math = parseMathTable(sfnt);
83
- cached = {
84
- font: {
85
- metrics: metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, unitsPerEm),
86
- cffBytes,
87
- descriptor: {
88
- unitsPerEm,
89
- ascent: ascentDesignUnits,
90
- descent: descentDesignUnits,
91
- capHeight,
92
- bboxMin,
93
- bboxMax,
94
- italicAngle: 0
95
- },
96
- glyphId: (codePoint) => cmap(codePoint),
97
- glyphSpaceWidth: (glyphId) => hmtx.advanceWidth(glyphId) * 1e3 / unitsPerEm
88
+ const inkBounds = parseCffGlyphBounds(cffBytes);
89
+ const font = {
90
+ metrics: metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, unitsPerEm),
91
+ cffBytes,
92
+ descriptor: {
93
+ unitsPerEm,
94
+ ascent: ascentDesignUnits,
95
+ descent: descentDesignUnits,
96
+ capHeight,
97
+ bboxMin,
98
+ bboxMax,
99
+ italicAngle: 0
98
100
  },
99
- metricsAt: (sizePt) => metricsAtSize(cmap, hmtx, math, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt)
101
+ glyphId: (codePoint) => cmap(codePoint),
102
+ glyphSpaceWidth: (glyphId) => hmtx.advanceWidth(glyphId) * 1e3 / unitsPerEm,
103
+ glyphInkBounds: (glyphId) => inkBounds?.bounds(glyphId),
104
+ minConnectorOverlap: math.variants.minConnectorOverlap,
105
+ stretchyConstruction: (codePoint, axis) => {
106
+ const glyphId = cmap(codePoint);
107
+ if (glyphId === void 0) return;
108
+ return (axis === "vertical" ? math.variants.vertical : math.variants.horizontal).get(glyphId);
109
+ }
110
+ };
111
+ cached = {
112
+ font,
113
+ metricsAt: (sizePt) => metricsAtSize(cmap, hmtx, math, inkBounds, unitsPerEm, ascentDesignUnits, descentDesignUnits, sizePt),
114
+ stretchGlyph: (codePoint, axis, targetSizePt, sizePt) => {
115
+ const construction = font.stretchyConstruction(codePoint, axis);
116
+ if (construction === void 0) return;
117
+ const designUnitsPerPt = unitsPerEm / sizePt;
118
+ const assembled = assembleStretchyGlyph(construction, {
119
+ axis,
120
+ targetSize: targetSizePt * designUnitsPerPt,
121
+ minConnectorOverlap: math.variants.minConnectorOverlap
122
+ });
123
+ return assembled === void 0 ? void 0 : scaleMathStretchConstruction(assembled, 1 / designUnitsPerPt);
124
+ }
100
125
  };
101
126
  return cached;
102
127
  }
@@ -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 };