mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
73 lines
2.1 KiB
TypeScript
73 lines
2.1 KiB
TypeScript
import {SMALL_IMAGE} from '../core/util';
|
|
export interface FontMetric {
|
|
baseline: number;
|
|
middle: number;
|
|
}
|
|
|
|
const SAMPLE_TEXT = 'Hidden Text';
|
|
|
|
export class FontMetrics {
|
|
private readonly _data: {[key: string]: FontMetric};
|
|
private readonly _document: Document;
|
|
|
|
constructor(document: Document) {
|
|
this._data = {};
|
|
this._document = document;
|
|
}
|
|
|
|
private parseMetrics(fontFamily: string, fontSize: string): FontMetric {
|
|
const container = this._document.createElement('div');
|
|
const img = this._document.createElement('img');
|
|
const span = this._document.createElement('span');
|
|
|
|
const body = this._document.body as HTMLBodyElement;
|
|
|
|
container.style.visibility = 'hidden';
|
|
container.style.fontFamily = fontFamily;
|
|
container.style.fontSize = fontSize;
|
|
container.style.margin = '0';
|
|
container.style.padding = '0';
|
|
container.style.whiteSpace = 'nowrap';
|
|
|
|
body.appendChild(container);
|
|
|
|
img.src = SMALL_IMAGE;
|
|
img.width = 1;
|
|
img.height = 1;
|
|
|
|
img.style.margin = '0';
|
|
img.style.padding = '0';
|
|
img.style.verticalAlign = 'baseline';
|
|
|
|
span.style.fontFamily = fontFamily;
|
|
span.style.fontSize = fontSize;
|
|
span.style.margin = '0';
|
|
span.style.padding = '0';
|
|
|
|
span.appendChild(this._document.createTextNode(SAMPLE_TEXT));
|
|
container.appendChild(span);
|
|
container.appendChild(img);
|
|
const baseline = img.offsetTop - span.offsetTop + 1;
|
|
|
|
container.removeChild(span);
|
|
container.appendChild(this._document.createTextNode(SAMPLE_TEXT));
|
|
|
|
container.style.lineHeight = 'normal';
|
|
img.style.verticalAlign = 'super';
|
|
|
|
const middle = img.offsetTop - container.offsetTop + 1;
|
|
|
|
body.removeChild(container);
|
|
|
|
return {baseline, middle};
|
|
}
|
|
getMetrics(fontFamily: string, fontSize: string): FontMetric {
|
|
const key = `${fontFamily} ${fontSize}`;
|
|
if (typeof this._data[key] === 'undefined') {
|
|
this._data[key] = this.parseMetrics(fontFamily, fontSize);
|
|
}
|
|
|
|
return this._data[key];
|
|
}
|
|
}
|