makeMaxpTable function

dynamic makeMaxpTable(
  1. dynamic numGlyphs
)

Implementation

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