mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
function FontMetrics() {
|
|
this.data = {};
|
|
}
|
|
|
|
FontMetrics.prototype.getMetrics = function(family, size) {
|
|
if (this.data[family + "-" + size] === undefined) {
|
|
this.data[family + "-" + size] = new Font(family, size);
|
|
}
|
|
return this.data[family + "-" + size];
|
|
};
|