Skip to content

Instantly share code, notes, and snippets.

@be5invis
Created November 23, 2019 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save be5invis/3be84e07332edbeccac7b575ea7ad2ae to your computer and use it in GitHub Desktop.
Save be5invis/3be84e07332edbeccac7b575ea7ad2ae to your computer and use it in GitHub Desktop.

Breaking the 64K limit

  • The next font format (OpenType 2?) should support > 64K glyphs in one font.
  • GID will be 32-bit.
  • A “subset” table would be present to support legacy APIs that expect GID being 16-bit. It is a bijection between 16-bit “Legacy GID” and 32-bit “Real GID”.
  • Legacy API implementations should reject “OT2” fonts if the subset table is absent – which means this font is designed exclusively for new API.
  • A STAT-like mechanism will be used to “break down” an “OT2” font into a family of legacy-API-aware fonts.
  • When processing in legacy software…
    • TTF component references – if still supported – will reference to Real GID rather than Legacy GID.
    • CMAPGSUB, COLR, SVG entries involving glyphs outside the down-level subset will be ignored.
    • GPOS will not be affected.
@davelab6
Copy link

I posted this at OpenType/opentype-layout#14 so it's not lost

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment