The AAT `ankr` anchor point table is an auxiliary table for `kerx`, used to store anchor overrides in case the glyph itself does not supply the needed anchors as control points. Among the fonts that come pre-installed with MacOS 10.12.6, `ankr` is used by a handful of non-Latin fonts such as “Myanmar MN”, “Devanagari Sangam MN”, and “Arial HB”. https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6ankr.html
14 lines
526 B
Python
14 lines
526 B
Python
from __future__ import print_function, division, absolute_import
|
|
from fontTools.misc.py23 import *
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
# The anchor point table provides a way to define anchor points.
|
|
# These are points within the coordinate space of a given glyph,
|
|
# independent of the control points used to render the glyph.
|
|
# Anchor points are used in conjunction with the 'kerx' table.
|
|
#
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6ankr.html
|
|
class table__a_n_k_r(BaseTTXConverter):
|
|
pass
|