fonteditor-core
Version:
fonts (ttf, woff, woff2, eot, svg, otf) parse, write, transform, glyph adjust.
40 lines (37 loc) • 789 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* @file ttf `name`编码表
* @author mengke01(kekee000@gmail.com)
*/
var nameId = {
0: 'copyright',
1: 'fontFamily',
2: 'fontSubFamily',
3: 'uniqueSubFamily',
4: 'fullName',
5: 'version',
6: 'postScriptName',
7: 'tradeMark',
8: 'manufacturer',
9: 'designer',
10: 'description',
11: 'urlOfFontVendor',
12: 'urlOfFontDesigner',
13: 'licence',
14: 'urlOfLicence',
16: 'preferredFamily',
17: 'preferredSubFamily',
18: 'compatibleFull',
19: 'sampleText'
};
// 反转names
var nameIdHash = {};
Object.keys(nameId).forEach(function (id) {
nameIdHash[nameId[id]] = +id;
});
nameId.names = nameIdHash;
var _default = exports.default = nameId;