|
1 | 1 | // https://github.com/weizhenye/ASS/wiki/Font-Size-in-ASS
|
2 | 2 |
|
| 3 | +const useTextMetrics = 'fontBoundingBoxAscent' in TextMetrics.prototype; |
| 4 | + |
3 | 5 | // It seems max line-height is 1200px in Firefox.
|
4 | 6 | const isFirefox = navigator.userAgent.toLowerCase().includes('firefox');
|
5 |
| -const unitsPerEm = isFirefox ? 512 : 2048; |
| 7 | +const unitsPerEm = !useTextMetrics && isFirefox ? 512 : 2048; |
6 | 8 | const lineSpacing = Object.create(null);
|
7 | 9 |
|
8 |
| -export const $fixFontSize = document.createElement('div'); |
9 |
| -$fixFontSize.className = 'ASS-fix-font-size'; |
10 |
| -$fixFontSize.style.fontSize = `${unitsPerEm}px`; |
| 10 | +const ctx = document.createElement('canvas').getContext('2d'); |
| 11 | + |
| 12 | +const $div = document.createElement('div'); |
| 13 | +$div.className = 'ASS-fix-font-size'; |
| 14 | +$div.style.fontSize = `${unitsPerEm}px`; |
11 | 15 | const $span = document.createElement('span');
|
12 | 16 | $span.textContent = '0';
|
13 |
| -$fixFontSize.append($span); |
| 17 | +$div.append($span); |
| 18 | + |
| 19 | +export const $fixFontSize = useTextMetrics ? null : $div; |
14 | 20 |
|
15 | 21 | export function getRealFontSize(fn, fs) {
|
16 | 22 | if (!lineSpacing[fn]) {
|
17 |
| - $span.style.fontFamily = fn; |
18 |
| - lineSpacing[fn] = $span.clientHeight; |
| 23 | + if (useTextMetrics) { |
| 24 | + ctx.font = `${unitsPerEm}px "${fn}"`; |
| 25 | + const tm = ctx.measureText(''); |
| 26 | + lineSpacing[fn] = tm.fontBoundingBoxAscent + tm.fontBoundingBoxDescent; |
| 27 | + } else { |
| 28 | + $span.style.fontFamily = `"${fn}"`; |
| 29 | + lineSpacing[fn] = $span.clientHeight; |
| 30 | + } |
19 | 31 | }
|
20 | 32 | return fs * unitsPerEm / lineSpacing[fn];
|
21 | 33 | }
|
0 commit comments