Incremental Web Font Loading via Segmented Glyph Transmission

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

The slow download of large web font files leads to delays in webpage rendering, negatively impacting user experience and hindering the adoption of web fonts.

Innovation Solution

A method for incremental web font loading, where a server creates a supported character list and a modified font based on a character map, compresses the font, and sends the list and compressed font to the client device, followed by separate transmissions of character data for merging into the font, allowing partial font access and faster rendering.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Measurement precision

If the complete web font file is downloaded before rendering, then the font display quality is ensured, but the webpage rendering time is delayed

Engineering Contradiction:
Improvefont display qualityVSAvoidwebpage rendering time
Core Design Contradiction:
Measurement precisionVSLoss of time

Solution Approach 1:

The font file is segmented into multiple parts: a core font data structure containing essential rendering information, and separate character glyph data. The core structure is transmitted first to enable immediate rendering, while glyph data is loaded incrementally as needed, resolving the contradiction between complete font availability and fast rendering.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The font data structure is prepared in advance with placeholder positions for all characters, and the core rendering engine is provided before complete glyph data is available. This preliminary setup allows the rendering system to function with partial data, enabling faster page rendering while maintaining quality.

Inventive Principle:
Principle #10Preliminary action

2Adaptability or versatility

If the complete web font file is transmitted, then all characters are available, but the data transmission size is large

Engineering Contradiction:
Improvecharacter availabilityVSAvoiddata transmission size
Core Design Contradiction:
Adaptability or versatilityVSQuantity of substance

Solution Approach 1:

Glyph data is extracted from the complete font file and separated into individual character components. Only the essential font structure and necessary glyph data are transmitted initially, while less frequently used character data can be loaded on-demand, reducing overall transmission size while maintaining full character availability.

Inventive Principle:
Principle #2Taking out (Extraction)

Solution Approach 2:

The font data is organized in a nested structure where the core font file contains a compressed or reference-based representation of glyph data. Additional character glyphs are nested within this structure and can be expanded or loaded incrementally, allowing compact transmission while preserving complete character sets.

Inventive Principle:
Principle #7Nested doll (Nesting)

3Quantity of substance

If the font file is compressed, then the transmission size is reduced, but the decompression processing time increases

Engineering Contradiction:
Improvedata transmission sizeVSAvoiddecompression processing time
Core Design Contradiction:
Quantity of substanceVSLoss of time

Solution Approach 1:

Different compression strategies are applied to different parts of the font file. The core font structure uses light compression for rapid decompression, while glyph data uses more aggressive compression since it can be loaded asynchronously. This localized approach balances transmission size reduction with minimal processing delay.

Inventive Principle:
Principle #3Local quality

4Speed

If incremental font loading is implemented, then the rendering speed is improved, but the system complexity increases

Engineering Contradiction:
Improverendering speedVSAvoidsystem complexity
Core Design Contradiction:
SpeedVSDevice complexity

Solution Approach 1:

The font loading system is designed to be self-managing, where the browser's existing font rendering infrastructure automatically handles the incremental data arrival. The core font structure contains self-describing metadata that enables the rendering engine to automatically integrate incoming glyph data without complex external coordination, maintaining simplicity while achieving incremental loading benefits.

Inventive Principle:
Principle #25Self-service

Data Source

PatentUS9619439B1Incremental web font loading
Publication Date: 2017.04.11 GOOGLE LLC
  • US9619439B1 patent drawing
  • US9619439B1 patent drawing
  • US9619439B1 patent drawing

AI summary

A system and machine-implemented method for providing a font is provided. A request is received from a client device to download a font. The requested font is accessed, where the accessed font includes a corresponding character map and a corresponding glyph table. A supported character list and a modified font based on the corresponding character map, the modified font is compressed, and the supported character list and the compressed modified font are sent to the client device. Character data is also sent to the client device, wherein the character data is for merging the at least one character into the modified font based on information in the character data.