Package: cairo

CEnum cairo-hint-metrics-t

Details

Specifies whether to hint font metrics. Hinting font metrics means quantizing them so that they are integer values in device space. Doing this improves the consistency of letter and line spacing, however it also means that text will be laid out differently at different zoom factors.
(defcenum cairo-hint-metrics-t
  :default
  :off
  :on)  
:default
Hint metrics in the default manner for the font backend and target device.
:off
Do not hint font metrics.
:on
Hint font metrics.
 

See also

2021-10-27