(data, start, size, strings)
| 3164 | |
| 3165 | // Parse the CFF private dictionary. We don't fully parse out all the values, only the ones we need. |
| 3166 | function 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. |
no test coverage detected