Difference between revisions of "Variable Fonts support"
Line 24: | Line 24: | ||
Firefox nightly does not support "named" variations. | 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): | 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): | ||
[http://tavmjong.free.fr/SVG/font_weight/font_weight.svg Test file] | [http://tavmjong.free.fr/SVG/font_weight/font_weight.svg Test file] |
Revision as of 13:21, 9 March 2018
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).
References
Specifications
Browser Support
- Chrome: Supported
- Safari: Supported (haven't tested)
- Firefox: In Nightly but must be enabled.
- Edge: ?
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):
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).
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)