Variable Fonts support

From Inkscape Wiki
Jump to navigation Jump to search

Overview

Fonts with Variations allow one to change the font appearance (weight, spacing, etc.) over a continuous range of values, all with just one font file. For an more information see this tutorial.

Our font rendering stack now includes support for font variations (harfbuzz (1.4), pango (1.41.1), freetype (2.8/2.9).

References

Specifications

Browser Support

  • Chrome: Supported
  • Safari: Supported (haven't tested)
  • Firefox: In Nightly but must be enabled.
  • Edge: ?

Test file

Firefox nightly does not support "named" variations.

Note: Chrome also supports 'font-weight' values that are not multiples of 100 (CSS Fonts Level 4 changes the allowed values of 'font-weight' to include all integers from 1 to 1000):

Test file

Google's FontView proof-of-concept

FontView is a demo program written by Google engineers to demonstrate the variable font technologies recently added to harfbuzz and freetype. This is the same stuff we'll use in inkscape soon. The project sources are available at https://github.com/googlei18n/fontview

On Fedora: dnf install wxGTK3-devel

Inkscape

Linked to recent libraries, Inkscape can use "named" variations out-of-the box (i.e., one font file provides multiple styles).

Reading of 'font-variation-settings' implemented. Needs fixing (incorrect parsing, parsing not robust against variations in white-space). FIXED.

If linked to Pango >= 1.41.1:

  • Font variations in existing files will be listed in the Font-Style drop-down menu.
  • Text with variations will be displayed properly in the Text and Font dialog (the display uses Pango directly).
  • On canvas rendering does not work. For the canvas, we use font outlines from Freetype. The Freetype font reference returned from Pango seems to be missing the variable font info:
 pango_fc_font_lock_face()


Note: Pango uses a different mechanism for handling variations from 'font-feature-settings'. Variations are handled in the Pango font description while features are handled by setting attributes.

Hint: To compile and link with libraries in /usr/local execute:

 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

before running cmake.

User Interface

On the UI, I've been thinking of sliders as the dumb-obvious solution to select values for a variable font axes, but I also think it would be cool to think of a user-defined "palette" of varfont instances. Because you have pretty much infinite variations that can be chosen in a varfont, but you'd want to pick some and use them on your document and then be able to tweak one of the instances and then see the change affecting all places where that was used. So, a varfont can have typedesigner-specified named instances, but I think we should also offer user-defined instances. And these should show up on the font selector just like nowadays we have a drop-down for Regular/Bold/Italics. Felipe "Juca" Sanches (talk)