Skip to content

Commit d3a0805

Browse files
committed
refactor: use TextMetrics for font size if supported
1 parent 0256425 commit d3a0805

File tree

2 files changed

+25
-9
lines changed

2 files changed

+25
-9
lines changed

src/index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ export default class ASS {
122122
},
123123
}));
124124

125-
container.append($fixFontSize);
125+
if ($fixFontSize) {
126+
container.append($fixFontSize);
127+
}
126128

127129
const { box } = this.#store;
128130
box.className = 'ASS-box';
@@ -168,7 +170,9 @@ export default class ASS {
168170
video.removeEventListener('waiting', this.#pause);
169171
video.removeEventListener('seeking', this.#seek);
170172

171-
$fixFontSize.remove();
173+
if ($fixFontSize) {
174+
$fixFontSize.remove();
175+
}
172176
box.remove();
173177
observer.unobserve(this.#store.video);
174178

src/renderer/font-size.js

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
11
// https://github.com/weizhenye/ASS/wiki/Font-Size-in-ASS
22

3+
const useTextMetrics = 'fontBoundingBoxAscent' in TextMetrics.prototype;
4+
35
// It seems max line-height is 1200px in Firefox.
46
const isFirefox = navigator.userAgent.toLowerCase().includes('firefox');
5-
const unitsPerEm = isFirefox ? 512 : 2048;
7+
const unitsPerEm = !useTextMetrics && isFirefox ? 512 : 2048;
68
const lineSpacing = Object.create(null);
79

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`;
1115
const $span = document.createElement('span');
1216
$span.textContent = '0';
13-
$fixFontSize.append($span);
17+
$div.append($span);
18+
19+
export const $fixFontSize = useTextMetrics ? null : $div;
1420

1521
export function getRealFontSize(fn, fs) {
1622
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+
}
1931
}
2032
return fs * unitsPerEm / lineSpacing[fn];
2133
}

0 commit comments

Comments
 (0)