makeMaxpTable function
dynamic
makeMaxpTable(
- dynamic numGlyphs
Implementation
makeMaxpTable(numGlyphs) {
return new Table(
'maxp', [
{"name": 'version', "type": 'FIXED', "value": 0x00005000},
{"name": 'numGlyphs', "type": 'USHORT', "value": numGlyphs}
],
null
);
}