[vlc-devel] [PATCH 0/4] freetype: font fallback

Salah-Eddin Shaban salshaaban at gmail.com
Thu Oct 22 13:53:46 CEST 2015


Hello,

Here (finally!) is font fallback using Uniscribe on Windows, FontConfig on Linux, and the XML configuration files on Android.

I had to use Uniscribe on Windows because font linking turned out to be very unreliable. It works for some combinations of families/scripts only. The Uniscribe method worked very well on all tests (using Arabic, Armenian, Malayalam, Devanagari, N'KO, and Thai texts) except those involving east Asian text. I'm not sure if it's a problem on my Windows system, but in any case I added a default fallback list just in case. It's probably a good idea even if the Uniscribe method does not usually fail. The default list should contain fonts that cover all Unicode scripts. Right now it has only some random fonts.

On Android I'm using the configuration files system_fonts.xml and fallback_fonts.xml. Newer versions of Android have the newer configuration in fonts.xml but they are required to keep the old files in sync. Right now there is no point in supporting the newer config since we do not have support for different weights, BCP language tags etc.

I tested the Android code on Linux after copying the fonts and config files from 2 Android devices. I think the code should work on Android without problems.

Certain discrepancies among platforms have forced some complications into the code. Right now I'm using a master family list that holds information about families and fonts obtained from the system, while fallback lists only reference this information in the master list to avoid unnecessary replication. Families in Android can be referenced by many different names so the family_map dictionary will contain multiple keys that map to a single family.

Populating fallback lists is done differently on each platform. On Android everything is loaded at startup when the XML files are parsed, and all fallback families reside within the "default" fallback list. On other platforms each family can have its own list of fallback families that are tried in order. FontConfig supplies us with fallback lists that seem to be guaranteed to cover all Unicode scripts. Whereas on Windows we have to populate the lists progressively. When a fallback for a given combination of family/codepoint is requested we try the fallback list of that family, and if no font is found that contains that codepoint we try UniscribeFallback, and add the resulting font to the list to speed up later searches.

Some optimizations can be done if necessary, like moving successful fallback families to the top of fallback lists, or keeping track of failed codepoints for which no font exists to avoid searching for them again. This can happen harmlessly e.g. for Unicode control characters which will be removed later anyway by HarfBuzz or RemoveZeroWidthCharacters.

Also regarding performance, the fallback lists returned by FontConfig can be very long and may cause a slight pause in playback the first time a list is initialized, if the required codepoint happens to be in a font somewhere at the end of the list. One way to avoid that could be to trigger loading the fallback list of the default font at module load time. Or we can revert to the method used in the previous RFC patch, which behaves more like the Uniscribe method.

The values in GetBestFont are arbitrary. You may want to change them. This function aims to fix two issues. If a family contains only a regular face and an Italic face is requested we should still return the regular face and let FreeType do synthetic styling. With font attachments this was not being done. The other issue is that not all styles of a family support the same scripts or codepoints. As an example the Italic face of Arial has no Arabic support whereas the regular face does. So with the font set to Arial, Italic Arabic text was appearing as missing glyphs.

Some exciting changes have been made to the FreeType module and text rendering in general, like text segments and on-the-fly text scaling! A few changes had to be made to the itemization code. I hope I did not break anything.


Salah-Eddin Shaban (4):
  freetype: font fallback structs and functions
  freetype: font fallback for Linux
  freetype: font fallback for Android
  freetype: font fallback for Windows

 modules/text_renderer/Makefile.am      |    2 +-
 modules/text_renderer/freetype.c       |  545 ++++++++-------
 modules/text_renderer/freetype.h       |   78 ++-
 modules/text_renderer/platform_fonts.c | 1138 ++++++++++++++++++++++++++++----
 modules/text_renderer/platform_fonts.h |  122 +++-
 modules/text_renderer/text_layout.c    |  175 ++++-
 6 files changed, 1619 insertions(+), 441 deletions(-)

-- 
1.9.1



More information about the vlc-devel mailing list