Get the glyph name for a character code
(code: number)
| 13 | export interface CFFEncoding { |
| 14 | /** Get the glyph name for a character code */ |
| 15 | getName(code: number): string | undefined; |
| 16 | |
| 17 | /** Get the character code for a glyph name */ |
| 18 | getCode(name: string): number | undefined; |
no outgoing calls