Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What OpenType typographic features does Qt support?

Tags:

qt

opentype

I'm curious whether Qt supports features like alternate figures (tabular or old style).

like image 912
cutwithflourish Avatar asked Oct 23 '25 17:10

cutwithflourish


1 Answers

The short answer is: None.

Qt uses FreeType to render the fonts. While the FreeType library itself provides an OpenType extension, the QFont object in Qt does not provide any API for Open Type extensions.

  • See for FreeType: http://freetype.org/opentype/index.html
  • Set Qt Doc for QFont: http://qt-project.org/doc/qt-5/QFont.html
like image 109
Flovdis Avatar answered Oct 27 '25 00:10

Flovdis