2017-09-06 00:46:55 +02:00
|
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
|
|
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gcid.html
|
|
|
|
class table__g_c_i_d(BaseTTXConverter):
|
2024-12-04 15:58:46 +00:00
|
|
|
"""Glyph ID to CID table
|
|
|
|
|
2024-12-06 11:37:17 +00:00
|
|
|
The AAT ``gcid`` table stores glyphID-to-CID mappings.
|
2024-12-04 15:58:46 +00:00
|
|
|
|
|
|
|
See also https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gcid.html
|
|
|
|
"""
|
|
|
|
|
2017-09-06 00:46:55 +02:00
|
|
|
pass
|