Difference between revisions of "Variable Fonts support"

From Inkscape Wiki
Jump to navigation Jump to search
Line 41: Line 41:
Reading of 'font-variation-settings' implemented. <strike>Needs fixing (incorrect parsing, parsing not robust against variations in white-space)</strike>. FIXED.
Reading of 'font-variation-settings' implemented. <strike>Needs fixing (incorrect parsing, parsing not robust against variations in white-space)</strike>. FIXED.


If linked to Pango >= 1.41.1:
Rendering implemented. Requires Pango >= 1.41.1; FreeType >= 2.8 (2.9?). Axes values are not yet clamped to allowed range.


* Font variations in existing files will be listed in the Font-Style drop-down menu.
GUI not implemented.
* 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()
=== Notes ===


==== Gettting a FreeType Font Handle ====


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.
Pango handles font variations via the Pango Font Description however the FreeType font retrieved via:


Hint: To compile and link with libraries in /usr/local execute:
  pango_fc_font_lock_face()  (which calls pango_ft2_font_get_face())
 
using the descriptor does not have the 'variation' axes set. We must do that ourselves. In principle this works with FreeType 2.8 but I seemed to need 2.9 to get it to work.
 
==== Internal Pango Support ====
 
This works:
  pango-view --font="Noto Sans @wght=900" --text=Test
 
Pango passes the font variation info onto HarfBuzz via hb_font_set_variations() in pangofc-shape.c for shaping. But this is used only to get glyph positions.
 
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.
 
==== Compiling/Linking ====
 
To compile and link with libraries in /usr/local execute:


   export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
   export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig


before running ''cmake''.
before running ''cmake'' in the Inkscape build directory.
 
Building and using freetype is a bit more complicated:
 
* To build:
*# mkdir build
*# cd build
*# cmake -D BUILD_SHARED_LIBS:BOOL=true ..
*# make
*# sudo make install
* To use:
*# export LD_LIBRARY_PATH=/usr/local/lib


== User Interface ==
== 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. [[User:Juca|Felipe &#34;Juca&#34; Sanches]] ([[User talk:Juca|talk]])
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. [[User:Juca|Felipe &#34;Juca&#34; Sanches]] ([[User talk:Juca|talk]])

Revision as of 14:11, 19 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 (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.

Rendering implemented. Requires Pango >= 1.41.1; FreeType >= 2.8 (2.9?). Axes values are not yet clamped to allowed range.

GUI not implemented.

Notes

Gettting a FreeType Font Handle

Pango handles font variations via the Pango Font Description however the FreeType font retrieved via:

 pango_fc_font_lock_face()  (which calls pango_ft2_font_get_face())

using the descriptor does not have the 'variation' axes set. We must do that ourselves. In principle this works with FreeType 2.8 but I seemed to need 2.9 to get it to work.

Internal Pango Support

This works:

 pango-view --font="Noto Sans @wght=900" --text=Test

Pango passes the font variation info onto HarfBuzz via hb_font_set_variations() in pangofc-shape.c for shaping. But this is used only to get glyph positions.

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.

Compiling/Linking

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

 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

before running cmake in the Inkscape build directory.

Building and using freetype is a bit more complicated:

  • To build:
    1. mkdir build
    2. cd build
    3. cmake -D BUILD_SHARED_LIBS:BOOL=true ..
    4. make
    5. sudo make install
  • To use:
    1. export LD_LIBRARY_PATH=/usr/local/lib

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)