hacks.mozilla.org

Web Open Font Format for Firefox 3.6

This article was written by John Daggett. John is a Mozilla contributor and has been working hard with font creators and web developers to improve the state of fonts on the web. This article is a high-level overview of whats different and shows some examples of WOFF in use. A full list of other supporting organizations can be found at the official Mozilla Blog.

In Firefox 3.5 we included support for linking to TrueType and OpenType fonts. In Firefox 3.6 we’re including support for a new font format – the Web Open Font Format, or WOFF. This format has two main advantages over raw TrueType or OpenType fonts.

  1. It is compressed, which means that you will typically see much smaller download sizes compared with raw TrueType or OpenType fonts.
  2. It contains information that allows you to see where the font came from – without DRM or labeling for a specific domain – which means it has support from a large number of font creators and font foundries.

The WOFF format originated from a collabaration between the font designers Erik van Blokland and Tal Leming with help from Mozilla’s Jonathan Kew. Each had proposed their own format and WOFF represents a melding of these different proposals. The format itself is intended to be a simple repackaging of OpenType or TrueType font data, it doesn’t introduce any new behavior, alter the @font-face linking mechanism or affect the way fonts are rendered. Many font vendors have expressed support for this new format so the hope is this will open up a wider range of font options for web designers.

Details on Differences between TrueType, OpenType and WOFF

First, compression is part of the WOFF format so web authors can optimize the size of fonts used on their pages. The compression format is lossless, the uncompressed font data will match that of the original OpenType or TrueType font, so the way the font renders will be the same as the original. Similar compression can be achieved using general HTTP compression but because compression is part of the WOFF format, it’s simpler for authors to use, especially in situations where access to server configuration is not possible.

Second, the format includes optional metadata so that a font vendor can tag their fonts with information related to font usage. This metadata doesn’t affect how fonts are loaded but tools can use this information to identify the source of a given font, so that those interested in the design of a given page can track down the fonts used on that page. Fonts in WOFF format are compressed but are not encrypted, the format should not be viewed as a “secure” format by those looking for a mechanism to strictly regulate and control font use.

Note: until Firefox 3.6 ships, users can test the use of WOFF fonts with Firefox nightly builds.

Examples

Below is a simple example that shows how to construct an @font-face rule that links to a WOFF font. To support browsers that only support direct linking to OpenType and TrueType fonts, the ’src’ descriptor lists the WOFF font first along with a format hint (”woff”), followed by the TrueType version:

/* Gentium (SIL International) */
 
@font-face {
  font-family: GentiumTest;
  src: url(fonts/GenR102.woff) format("woff"),
       url(fonts/GenR102.ttf) format("truetype");
}
 
body {
  font-family: GentiumTest, Times, Times New Roman, serif;
}

Structured this way, browsers that support the WOFF format will download the WOFF file. Other browsers that support @font-face but don’t yet support the WOFF format will use the TrueType version. (Note: IE support is a bit trickier, as discussed below). As WOFF is adopted more widely the need to include links to multiple font formats will diminish.

Other examples below demostrate the use of WOFF formatted fonts but each example has been constructed so that it will work in any browser that supports @font-face, including Internet Explorer.

A font family with multiple faces

Using a Postscript CFF font

African Language Display

Below is an example of how downloadable fonts can be used to render languages for which font support is usually lacking. The example shows the UN Declaration of Human Rights, translated into two African languages, and how these render with default browser fonts vs. with a downloadable font suited for rendering these languages.

Note that in one of these examples that the font size goes from a 3.1MB TTF to a 1MB WOFF font and in the other from a 172KB TTF to an 80KB WOFF file.

Another Postscript CFF font

An example in Japanese

Working With Other Browsers

Firefox 3.6 will be the first shipping browser to support the WOFF format so it’s important to construct @font-face rules that work with browsers lacking WOFF support. One thing that helps greatly with this is the use of format hints to indicate the format of font data before it’s downloaded; browsers that don’t recognize a given format simply skip data in a format they don’t support.

Internet Explorer, including IE8, only supports the EOT font format and only implements a subset of the @font-face rule descriptors. This makes creating cross-platform @font-face rules that work with IE especially tricky. One solution is to make different rules for IE:

@font-face {
  font-family: GentiumTest;
  src: url(fonts/GenR102.eot);  /* for IE */
}
 
@font-face {
  font-family: GentiumTest;
  /* Works only in WOFF-enabled browsers */
  src: url(fonts/GenR102.woff) format("woff"); 
}

One minor downside of this is that IE doesn’t understand format hints and doesn’t parse @font-face URL’s correctly, it treats format hints as part of the URL, so web authors using the @font-face rules above will see the following in their access logs:

GET /fonts/GenR102.eot HTTP/1.1" 200 303536
GET /fonts/GenR102.woff)%20format(%22woff%22) HTTP/1.1" 404 335

IE successfully pulls down and uses the EOT version of the font but also tries to pull down the WOFF font with the format hint included in the URL. This fails and doesn’t affecting page rendering but it wastes valuable server resources. For more discussion, see Paul Irish’s blog post for one interesting workaround.

Another problem is that IE currently tries to download all fonts on the page, whether they are used or not. That makes site-wide stylesheets containing all fonts used on site pages difficult, since IE will always try to download all fonts defined in @font-face rules, wasting lots of server bandwidth.

Further Resources

Documentation

Latest draft WOFF specification
Original blog post on using @font-face
CSS3 Fonts working draft
MDC @font-face documentation

Tools

Jonathan Kew’s sample encoding/decoding code
woffTools – tools for examining and validating WOFF files
FontTools/TTX – Python library and tool for manipulating font data
Web-based font subsetting tool

General @font-face Examples

CSS @ Ten: The Next Big Thing
Example layout using Graublau Sans
Examples of Interesting Web Typography
The Elements of Typographic Style Applied to the Web

Font Resources

Font Squirrel
10 Great Free Fonts for @font-face
40 Excellent Free Fonts by Smashing Magazine

52 Responses to “Web Open Font Format for Firefox 3.6”


  1. 1 Ivo

    Using the mentioned Firefox nightly builds you can see what WOFF could look like on a sample page FSI FontShop International designed together with the guys from Edenspiekermann using both FF Meta and FF Meta Serif to endorse the WOFF specification: edenspiekermann.com/woff.

  2. 2 Greg K Nicholson

    Or you could put an EOT-format file at /fonts/GenR102.woff)%20format(%22woff%22)

    Then you’d be able to reduce the CSS syntax back to the first example.

  3. 3 John Daggett

    @Ivo
    Fantastic, thanks for your support!

    @Greg K Nicholson
    Yes, but if you edited that list you would quietly break the link to the EOT font. So it’s possible but somewhat brittle in practice.

  4. 4 Ivo

    Thanks for supporting the foundries, John.

    For those who don’t have the latest Firefox build installed [probably the bigger part of your readers], here you can find a screenshot, which shows the beautiness of typographic diversity on the web.

  5. 5 Richard Fink

    @john
    Congrats to all on a job elegantly done.
    Among font vendors it would seem you’ve gone from being the Devil incarnate to Saint John the Divine. And in the space of less than a year.
    Cool beans.

    rich

  6. 6 John Daggett

    @Richard Fink
    Thanks. Much of the work for this was done by Tal, Erik and Jonathan, they deserve the credit for bringing this to fruition.

    Lots of devilish work ahead. More tomorrow.

  7. 7 Tom Phelps

    For fonts with a large number of glyphs, it is important to have random access to glyph data, so that you don’t spend the time and memory reading in, say, the 32,000 glyphs of a CJK font of which you only use 100. The Deflate compression is stream based, so if you kept the glyph data compressed and read each glyph as needed, as is common and efficient practice with TrueType and OpenType fonts, then on average you would have to decompress half of the glyph data for each glyph.

    Alternatively, upon downloading the font the client could decompress all tables (if you’re uncompressing the glyph data you may as well uncompress everything since for most fonts the glyph data is by far the largest table). But if you uncompress, you may as well rely on the server’s HTTP compression and have a simpler specification. (And if there is no internal compression, the metadata could be put into a new table and WOFF fonts could be compatible with existing TrueType and OpenType.)

    What is the recommended or Mozilla way to handle fonts with large glyph data that is compressed internally?

  8. 8 John

    Why no EOT support? Doesn’t that mean that cross-browser font support will be a pipe-dream for the foreseeable future (until IE6, IE7 AND IE8 dies, let alone the other browsers catching up)?

    What sort of file format is WOFF? Are Google/Opera/Apple/Microsoft all happy with WOFF, or is it Mozilla proprietary? Does it require dedicated tools or can it be made by hand? Has a spec been published anywhere? Is Mozilla planning making the tools to allow people to convert to and from other font formats? Are the font foundries signed up? What about the font software manufacturers?

  9. 9 Raju Bitter

    Great work, will make it a lot easier to use downloadable fonts and not running into problems with making font files available on a public web server.
    Downloadable font support in Firefox 3.5 has already been added to OpenLaszlo (Ajax/JavaScript runtime), and I filed a JIRA issue to support WOFF just now!

  10. 10 John Daggett

    @John
    The resources section contains links to the spec and sample code. You can read more of the background discussion of the format on the www-font mailing list.

    http://lists.w3.org/Archives/Public/www-font/

    @Tom Phelps
    Right now the format is relatively simple, tables are either compressed or not, there’s no way to do partial decompression on a given table. CJK fonts are an interesting example, you probably don’t want to send 32,000 glyphs in any form, compressed or not. A format for the future would be one that allowed separate chunks containing sets of glyphs to be downloaded and dynamically linked to the original font when needed. But that’s a very, very tricky problem. Another approach would be to consider a stroke-based format, taking advantage of the common elements in CJK glyphs. But I don’t know of any open format for stroke-based glyphs.

  11. 11 dfghdgdfh

    What about svg fonts?

  12. 12 dfgdfhjdfhf

    No mentioning of svg fonts is kind of a drawback.
    Open and TrueType fonts all good but svgfonts provide a step forward because they’re vector based.
    Why doesn’t Firefox support svgfonts, they exist for a while and Opera 10 supports them.

  13. 13 Doc

    Followed a link on Lifehacker.com here…why is it that BROWSER DESIGNERS can’t design a website with FLUID WIDTH PAGES? I’ve got a 1680×1050 screen, and the main body of the site barely takes up 50% of the width of my screen. Get a clue, designers!

  14. 14 עורך דין פלילי

    does WOFF support RTL ?

  15. 15 dellamowi_k

    I don’t think that these downloadable fonts are usable in a website design context. The fact that you can see the text change fonts at each page load is painful to the eyes.

  1. 1 Mozilla Supports Web Open Font Format :: The Mozilla Blog
  2. 2 Mozilla Formally Announces Support For WOFF (Web Open Font Format)
  3. 3 Firefox’s Future Features: 3.6, 3.7, and 4.0 « The Tech Guia
  4. 4 Options for using special fonts on the web | homer gaines
  5. 5 after Firefox 3.6 – new font control features for designers at hacks.mozilla.org
  6. 6 BlogZilla » Firefox 3.6 e i nuovi font scaricabili
  7. 7 Web Open Font Format support for Firefox 3.6 | Browser Watch
  8. 8 Type on the internet « Type Two
  9. 9 Firefox’s future features: 3.6, 3.7, and 4.0 « The Net Adrenaline
  10. 10 Font Dragr: A drag and drop font tester | The CSS Ninja - All things CSS, Javascript & xhtml
  11. 11 cssing :: Архив :: font-face оживление
  12. 12 Crea tu kit de @font-face fácilmente « Raymundo.Aaron
  13. 13 Fluid Web Typography is done! | { speaking in styles }
  14. 14 Novo firefox « Os melhores deskmod's
  15. 15 Browser Beta Roundup: Firefox 3.6b1, Chrome 4
  16. 16 Web Open Font Format Will Change Web Design – Max Kiesler - Designer
  17. 17 AS3 WOFF Parser | MadeByPi® Blog
  18. 18 BlogoFlux – Information Technology Blog | Latest Technology News| » Blog Archive » Mozilla Firefox 3.6 Beta 2 Released
  19. 19 Firefox 3.6 Beta 2 publicado! | iTechezx - Una Guia Technologia
  20. 20 Firefox 3.6 Beta 2发布 修复190多个Bug | MaxBeta.COM_测试版鲜活资讯
  21. 21 Download Mozilla Firefox 3.6 Beta 2 | tech-Know kishan
  22. 22 Firefox 3.6 Beta (revision 2) update published | Easy Firefox
  23. 23 Mozilla Firefox 3.6 Beta 2. « WastedNet: Blog
  24. 24 Mozilla Firefox 3.6 Beta 2 « News, Software and All you need
  25. 25 Firefox 3.6 beta 2, disponible
  26. 26 Firefox 3.6 Beta 2 Released « The Firefox Extension Guru’s Blog
  27. 27 операционные системы Linux/BSD » Вышла вторая бета-версия Firefox 3.6
  28. 28 Firefox 3.6 Beta 1 is Now Available for Download… « my_ideas sleep furiously
  29. 29 Fillet-of-Soule.com » Blog Archive » Fonts on the web
  30. 30 Firefox 3.6 Announces Beta 1 | Ranjith Siji | Programming the Web
  31. 31 Nothing Blog : Webdesigner, freut euch auf WOFF!
  32. 32 Above The Fold » Mozilla Firefox 3.6 Beta Coverage
  33. 33 jjgod / blog - 闲聊文本渲染技术的近期发展
  34. 34 On the Edge « Voidnothings
  35. 35 Talking » Firefox Beta 3.6(Revision 3)
  36. 36 Mozilla Firefox 3.6 Beta Coverage | profirefox.org | FireFox Plugins, Themes and Updates Blog..
  37. 37 Download Mozilla Firefox 3.6 Beta 3 | tech-Know kishan

Leave a Reply