MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / parseCFFPrivateDict

Function parseCFFPrivateDict

libraries/p5.js:3166–3169  ·  view source on GitHub ↗
(data, start, size, strings)

Source from the content-addressed store, hash-verified

3164
3165// Parse the CFF private dictionary. We don't fully parse out all the values, only the ones we need.
3166function parseCFFPrivateDict(data, start, size, strings) {
3167 var dict = parseCFFDict(data, start, size);
3168 return interpretDict(dict, PRIVATE_DICT_META, strings);
3169}
3170
3171// Parse the CFF charset table, which contains internal names for all the glyphs.
3172// This function will return a list of glyph names.

Callers 1

parseCFFTableFunction · 0.85

Calls 2

parseCFFDictFunction · 0.85
interpretDictFunction · 0.85

Tested by

no test coverage detected