astro-ghostcms/.pnpm-store/v3/files/d8/b63bc4f1b4b7f702a04a0dea55a...

31 lines
1.0 KiB
Plaintext

// The `GPOS` table contains kerning pairs, among other things.
// https://www.microsoft.com/typography/OTSPEC/gpos.htm
import check from '../check';
import { decode } from '../types';
import parse from '../parse';
// Parse the metadata `meta` table.
// https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6meta.html
function parseMetaTable(data, start) {
const p = new parse.Parser(data, start);
const tableVersion = p.parseULong();
check.argument(tableVersion === 1, 'Unsupported META table version.');
p.parseULong(); // flags - currently unused and set to 0
p.parseULong(); // tableOffset
const numDataMaps = p.parseULong();
const tags = {};
for (let i = 0; i < numDataMaps; i++) {
const tag = p.parseTag();
const dataOffset = p.parseULong();
const dataLength = p.parseULong();
const text = decode.UTF8(data, start + dataOffset, dataLength);
tags[tag] = text;
}
return tags;
}
export default { parse: parseMetaTable };