GPOS - The Glyph Positioning Table

The Glyph Positioning table (GPOS) provides precise control over glyph placement for sophisticated text layout and rendering in each script and language system that a font supports.

Overview

Complex glyph positioning becomes an issue in writing systems, such as Vietnamese, that use diacritical and other marks to modify the sound or meaning of characters. These writing systems require controlled placement of all marks in relation to one another for legibility and linguistic accuracy.
 
DIAGRAM

Figure 4a. Vietnamese words with marks.

Other writing systems require sophisticated glyph positioning for correct typographic composition. For instance, Urdu glyphs are calligraphic and connect to one another along a descending, diagonal text line that proceeds from right to left. To properly render Urdu, a text-processing client must modify both the horizontal (X) and vertical (Y) positions of each glyph.
 

DIAGRAM

Figure 4b. Urdu layout requires glyph positioning control, as well as contextual substitution

With the GPOS table, a font developer can define a complete set of positioning adjustment features in an OpenType font. GPOS data, organized by script and language system, is easy for a text-processing client to use to position glyphs.

Positioning Glyphs with OpenType

Glyph positioning in OpenType uses only two values, placement and advance, to specify a glyph's position for text layout. If glyphs are positioned with respect to a virtual "pen point" that moves along a line of text, placement describes the glyph's position with respect to the current pen point, and advance describes where to move the pen point to position the next glyph (see Figure 4c). For horizontal text, placement corresponds to the left side bearing, and advance corresponds to the advance width.
 

DIAGRAM

Figure 4c. Glyph positioning with OpenType

OpenType specifies placement and advance only in the X direction for horizontal layout and only in the Y direction for vertical layout. For simple Latin text layout, these two values may be adequate to position glyphs correctly. But, for texts that require more sophisticated layout, the values must cover a richer range. Placement and advance may need adjustment vertically, as well as horizontally.

The only positioning adjustment defined in OpenType is pair kerning, which modifies the horizontal spacing between two glyphs. A typical kerning table lists pairs of glyphs and specifies how much space a text-processing client should add or remove between the glyphs to properly display each pair. It does not provide specific information about how to adjust the glyphs in each pair, and cannot adjust contexts of more than two glyphs.

Positioning Glyphs with OpenType

OpenType fonts allow excellent control and flexibility for positioning a single glyph and for positioning multiple glyphs in relation to one another. By using both X and Y values that the GPOS table defines for placement and advance and by using glyph attachment points, a client can more precisely adjust the position of a glyph.

To improve kerning, the GPOS table offers both horizontal and vertical values for independently adjusting each glyph in a pair. For each glyph, the table also explicitly describes the type, size, and direction of the adjustment. For example, to kern two glyphs horizontally, the table might say to reduce the total advance units of the first glyph by 20 units in the X direction, reduce the left side bearing of the second glyph by 20 units, or to do both but by 10 units instead of 20.

Similarly, the GPOS table can specify adjustments to the positions of three or more glyphs. This is useful for triplet kerning or other adjustments that depend on a glyph string context. In addition, the GPOS table can reference a Device table to define subtle, device-dependent adjustments to any placement or advance value at any font size and device resolution. For example, a Device table can specify adjustments at 51 pixels per em (ppem) that do not occur at 50 ppem.

Other GPOS features can define attachment points to combine glyphs and position them with respect to one another. A glyph might have multiple attachment points. The point used will depend on the glyph to be attached. For instance, a base glyph could have attachment points for different diacritical marks.

To reduce the size of the font file, a base glyph may use the same attachment point for all mark glyphs assigned to a particular class. For example, a base glyph could have two attachment points, one above and one below the glyph. Then all marks that attach above glyphs would be attached at the high point, and all marks that attach below glyphs would be attached at the low point. Attachment points are useful in scripts, such as Arabic, that combine numerous glyphs with vowel marks.

Attachment points also are useful for connecting cursive-style glyphs. Glyphs in cursive fonts can be designed to attach or overlap when rendered. Alternatively, the font developer can use OpenType to create a cursive attachment feature and define explicit exit and entry attachment points for each glyph (see Figure 4d).
 

DIAGRAM

Figure 4d. Entry and exit points marked on contextual Urdu glyph variations

The GPOS table supports seven types of actions for positioning and attaching glyphs:


 
DIAGRAM

Figure 4e. Contextual positioning lowered the accent over a vowel glyph that followed an overhanging uppercase glyph

Table Organization

The GPOS table begins with a header that defines offsets to a ScriptList, a FeatureList, and a LookupList (see Figure 4f):

For a detailed discussion of ScriptLists, FeatureLists, and LookupLists, see the chapter, Common Table Formats. The following discussion summarizes how the GPOS table works.
 

DIAGRAM

Figure 4f. High-level organization of GPOS table

The GPOS table is organized so text processing clients can easily locate the features and lookups that apply to a particular script or language system. To access GPOS information, clients should use the following procedure:

  1. Locate the current script in the GPOS ScriptList table.
  2. If the language system is known, search the script for the correct LangSys table; otherwise, use the script's default language system (DefaultLangSys table).
  3. The LangSys table provides index numbers into the GPOS FeatureList table to access a required feature and a number of additional features.
  4. Inspect the FeatureTag of each feature, and select the features to apply to an input glyph string.
  5. Each feature provides an array of index numbers into the GPOS LookupList table. Lookup data is defined in one or more subtables that contain information about specific glyphs and the kinds of operations to be performed on them.
  6. Assemble all lookups from the set of chosen features, and apply the lookups in the order given in the LookupList table.

A lookup uses subtables to define the specific conditions, type, and results of a positioning action used to implement a feature. All subtables in a lookup must be of the same LookupType, as listed in the LookupType Enumeration table:
 
LookupType Enumeration table for glyph positioning
ValueTypeDescription
1Single adjustmentAdjust position of a single glyph
2Pair adjustmentAdjust position of a pair of glyphs
3Cursive attachmentAttach cursive glyphs
4MarkToBase attachmentAttach a combining mark to a base glyph
5MarkToLigature attachmentAttach a combining mark to a ligature
6MarkToMark attachmentAttach a combining mark to another mark
7Context positioningPosition one or more glyphs in context
8+ReservedFor future use
  

Each LookupType is defined by one or more subtables, whose format depends on the type of positioning operation and the resulting storage efficiency. When glyph information is best presented in more than one format, a single lookup may define more than one subtable, as long as all the subtables are of the same LookupType. For example, within a given lookup, a glyph index array format may best represent one set of target glyphs, whereas a glyph index range format may be better for another set.

A series of positioning operations on the same glyph or string requires multiple lookups, one for each separate action. Each lookup is given a different array number in the LookupList table and is applied in the LookupList order.

During text processing, a client applies a lookup to each glyph in the input string, starting with the first glyph, before moving to the next lookup. To apply a lookup, the client searches the subtables in the order they are defined in the lookup. If the first subtable does not contain data relevant to the glyph, the client searches the next subtable, and so on. If the client finds glyph data, it adjusts the glyph position.

A lookup is finished for a glyph when the client repositions a glyph or when the client finds no relevant data in any of the subtables defined in the lookup. The client then advances to the next glyph in the glyph string and begins the lookup process again.

This rest of this chapter describes the GPOS header and the subtables defined for each LookupType. Several GPOS subtables share other tables: ValueRecords, Anchor tables, and MarkArrays. For easy reference, the shared tables are described at the end of this chapter.

GPOS Header

The GPOS table begins with a header that contains a version number (Version) initially set to 1.0 (0x00010000) and offsets to three tables: ScriptList, FeatureList, and LookupList. For descriptions of these tables, see the chapter, Common Table Formats. Example 1 at the end of this chapter shows a GPOS Header table definition.
 
GPOS Header
TypeNameDescription
fixed32VersionVersion of the GPOS table-initially = 0x00010000
OffsetScriptListOffset to ScriptList table-from beginning of GPOS table
OffsetFeatureListOffset to FeatureList table-from beginning of GPOS table
OffsetLookupListOffset to LookupList table-from beginning of GPOS table
  

Lookup Type 1:
Single Adjustment Positioning Subtable

A single adjustment positioning subtable (SinglePos) is used to adjust the position of a single glyph, such as a subscript or superscript. In addition, a SinglePos subtable is commonly used to implement lookup data for contextual positioning.

A SinglePos subtable will have one of two formats: one that applies the same adjustment to a series of glyphs, or one that applies a different adjustment for each unique glyph.

Single Adjustment Positioning: Format 1

A SinglePosFormat1 subtable applies the same positioning value or values to each glyph listed in its Coverage table. For instance, when a font uses old-style numerals, this format could be applied to uniformly lower the position of all math operator glyphs.

The Format 1 subtable consists of a format identifier (PosFormat), an offset to a Coverage table that defines the glyphs to be adjusted by the positioning values (Coverage), and the format identifier (ValueFormat) that describes the amount and kinds of data in the ValueRecord.

The ValueRecord specifies one or more positioning values to be applied to all covered glyphs (Value). For example, if all glyphs in the Coverage table require both horizontal and vertical adjustments, the ValueRecord will specify values for both XPlacement and Yplacement.

Example 2 at the end of this chapter shows a SinglePosFormat1 subtable used to adjust the placement of subscript glyphs.
 
SinglePosFormat1 subtable:
Single positioning value
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetCoverageOffset to Coverage table-from beginning of SinglePos subtable
uint16ValueFormatDefines the types of data in the ValueRecord
ValueRecordValueDefines positioning value(s)-applied to all glyphs in the Coverage table
  

Single Adjustment Positioning: Format 2

A SinglePosFormat2 subtable provides an array of ValueRecords that contains one positioning value for each glyph in the Coverage table. This format is more flexible than Format 1, but it requires more space in the font file.

For example, assume that the Cyrillic script will be used in left-justified text. For all glyphs, Format 2 could define position adjustments for left side bearings to align the left edges of the paragraphs. To achieve this, the Coverage table would list every glyph in the script, and the SinglePosFormat2 subtable would define a ValueRecord for each covered glyph. Correspondingly, each ValueRecord would specify an XPlacement adjustment value for the left side bearing.

Note: All ValueRecords defined in a SinglePos subtable must have the same ValueFormat. In this example, if XPlacement is the only value that a ValueRecord needs to optically align the glyphs, then XPlacement will be the only value specified in the ValueFormat of the subtable.

As in Format 1, the Format 2 subtable consists of a format identifier (PosFormat), an offset to a Coverage table that defines the glyphs to be adjusted by the positioning values (Coverage), and the format identifier (ValueFormat) that describes the amount and kinds of data in the ValueRecords. In addition, the Format 2 subtable includes:

Example 3 at the end of this chapter shows how to adjust the spacing of three dash glyphs with a SinglePosFormat2 subtable.
 
SinglePosFormat2 subtable:
Array of positioning values
TypeNameDescription
uint16PosFormatFormat identifier-format = 2
OffsetCoverageOffset to Coverage table-from beginning of SinglePos subtable
uint16ValueFormatDefines the types of data in the ValueRecord
uint16ValueCountNumber of ValueRecords
ValueRecordValue
[ValueCount]
Array of ValueRecords-positioning values applied to glyphs
  

Lookup Type 2:
Pair Adjustment Positioning Subtable

A pair adjustment positioning subtable (PairPos) is used to adjust the positions of two glyphs in relation to one another-for instance, to specify kerning data for pairs of glyphs. Compared to a typical kerning table, however, a PairPos subtable offers more flexiblity and precise control over glyph positioning. The PairPos subtable can adjust each glyph in a pair independently in both the X and Y directions, and it can explicitly describe the particular type of adjustment applied to each glyph. In addition, a PairPos subtable can use Device tables to subtly adjust glyph positions at each font size and device resolution.

PairPos subtables can be either of two formats: one that identifies glyphs individually by index (Format 1), or one that identifies glyphs by class (Format 2).

Pair Positioning Adjustment: Format 1

Format 1 uses glyph indices to access positioning data for one or more specific pairs of glyphs. All pairs are specified in the order determined by the layout direction of the text.

Note: For text written from right to left, the right-most glyph will be the first glyph in a pair; conversely, for text written from left to right, the left-most glyph will be first.

A PairPosFormat1 subtable contains a format identifier (PosFormat) and two ValueFormats:

Either of the two ValueFormats may be set to zero (0) to indicate that the corresponding glyph has no ValueRecord and, therefore, should not be repositioned.

A PairPos subtable also defines an offset to a Coverage table (Coverage) that lists the indices of the first glyphs in each pair. More than one pair can have the same first glyph, but the Coverage table will list that glyph only once.

The subtable also contains an array of offsets to PairSet tables (PairSet) and a count of the defined tables (PairSetCount). The PairSet array contains one offset for each glyph listed in the Coverage table and uses the same order as the Coverage Index.
 
PairPosFormat1 subtable: Adjustments for glyph pairs
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetCoverageOffset to Coverage table-from beginning of PairPos subtable-only the first glyph in each pair
uint16ValueFormat1Defines the types of data in ValueRecord1-for the first glyph in the pair -may be zero (0)
uint16ValueFormat2Defines the types of data in ValueRecord2-for the second glyph in the pair -may be zero (0)
uint16PairSetCountNumber of PairSet tables
ValueRecordPairSet
[PairSetCount]
Array of offsets to PairSet tables-from beginning of PairPos subtable-ordered by Coverage Index
  

A PairSet table enumerates all the glyph pairs that begin with a covered glyph. An array of PairValueRecords (PairValueRecord) contains one record for each pair and lists the records alphabetically by the second glyph in each pair. PairValueCount specifies the number of PairValueRecords in the set.
 
PairSet table
TypeNameDescription
uint16PairValueCountNumber of PairValueRecords
structPairValueRecord
[PairValueCount]
Array of PairValueRecords-ordered alphabetically by second glyph
  

A PairValueRecord specifies the second glyph in a pair (SecondGlyph) and defines a ValueRecord for each glyph (Value1 and Value2). If ValueFormat1 is set to zero (0) in the PairPos subtable, ValueRecord1 will be empty; similarly, if ValueFormat2 is 0, Value2 will be empty.

Example 4 at the end of this chapter shows a PairPosFormat1 subtable that defines two cases of pair kerning.
 
PairValueRecord
TypeNameDescription
GlyphIDSecondGlyphGlyphID of second glyph in the pair-first glyph is listed in the Coverage table
ValueRecordValue1Positioning data for the first glyph in the pair
ValueRecordValue2Positioning data for the second glyph in the pair
  

Pair Positioning Adjustment: Format 2

Format 2 defines a pair as a set of two glyph classes and modifies the positions of all the glyphs in a class. For example, this format is useful in Japanese scripts that apply specific kerning operations to all glyph pairs that contain punctuation glyphs. One class would be defined as all glyphs that may be coupled with punctuation marks, and the other classes would be groups of similar punctuation glyphs.

The PairPos Format2 subtable begins with a format identifier (PosFormat) and an offset to a Coverage table (Coverage), measured from the beginning of the PairPos subtable. The Coverage table lists the indices of the first glyphs that may appear in each glyph pair. More than one pair may begin with the same glyph, but the Coverage table lists the glyph index only once.

Note: The ClassDef1 table also identifies the first glyphs in each pair, but the redundant listing in the Coverage table accelerates the lookup process.

A PairPosFormat2 subtable also includes two ValueFormats:

Either of the two ValueFormats may be set to zero (0) to indicate that the corresponding glyph has no ValueRecord and, therefore, should not be repositioned. PairPosFormat2 requires that each glyph in all pairs be assigned to a class, which is identified by an integer called a class value. (For details about classes, see the chapter, Common Table Formats.) Pairs are then represented in a two-dimensional array as sequences of two class values. Multiple pairs can be represented in one Format 2 subtable.

A PairPosFormat2 subtable contains offsets to two class definition tables: one that assigns class values to all the first glyphs in all pairs (ClassDef1), and one that assigns class values to all the second glyphs in all pairs (ClassDef2). If both glyphs in a pair use the same class definition, the offset value will be the same for ClassDef1 and ClassDef2. The subtable also specifies the number of glyph classes defined in ClassDef1 (Class1Count) and in ClassDef2 (Class2Count), including Class0.

For each class identified in the ClassDef1 table, a Class1Record enumerates all pairs that contain a particular class as a first component. The Class1Record array stores all Class1Records according to class value.

Note: Class1Records are not tagged with a class value identifier. Instead, the index value of a Class1Record in the array defines the class value represented by the record. For example, the first Class1Record enumerates pairs that begin with a Class 0 glyph, the second Class1Record enumerates pairs that begin with a Class1 glyph, and so on.

 
PairPosFormat2 subtable: Class pair adjustment
TypeNameDescription
uint16PosFormatFormat identifier-format = 2
OffsetCoverageOffset to Coverage table-from beginning of PairPos subtable-for the first glyph of the pair
uint16ValueFormat1ValueRecord definition-for the first glyph of the pair-may be zero (0)
uint16ValueFormat2ValueRecord definition-for the second glyph of the pair-may be zero (0)
OffsetClassDef1Offset to ClassDef table-from beginning of PairPos subtable-for the first glyph of the pair
OffsetClassDef2Offset to ClassDef table-from beginning of PairPos subtable-for the second glyph of the pair
uint16Class1CountNumber of classes in ClassDef1 table-includes Class0
uint16Class2CountNumber of classes in ClassDef2 table-includes Class0
structClass1Record
[Class1Count]
Array of Class1 records-ordered by Class1
  

Each Class1Record contains an array of Class2Records (Class2Record), which also are ordered by class value. One Class2Record must be declared for each class in the ClassDef2 table, including Class 0.
 
Class1Record
TypeNameDescription
structClass2Record[Class2Count]Array of Class2 records-ordered by Class2
  

A Class2Record consists of two ValueRecords, one for the first glyph in a class pair (Value1) and one for the second glyph (Value2). If the PairPos subtable has a value of zero (0) for ValueFormat1 or ValueFormat2, the corresponding record (ValueRecord1 or ValueRecord2) will be empty.

Example 5 at the end of this chapter demonstrates pair kerning with glyph classes in a PairPosFormat2 subtable.
 
Class2Record
TypeNameDescription
ValueRecordValue1Positioning for first glyph-empty if ValueFormat1 = 0
ValueRecordValue2Positioning for second glyph-empty if ValueFormat2 = 0
  

Lookup Type 3:
Cursive Attachment Positioning Subtable

Some cursive fonts are designed so that adjacent glyphs join when rendered with their default positioning. However, if positioning adjustments are needed to join the glyphs, a cursive attachment positioning (CursivePos) subtable can describe how to connect the glyphs by aligning two anchor points: the designated exit point of a glyph, and the designated entry point of the following glyph.

The subtable has one format: CursivePosFormat1. It begins with a format identifier (PosFormat) and an offset to a Coverage table (Coverage), which lists all the glyphs that define cursive attachment data.

In addition, the subtable contains one EntryExitRecord for each glyph listed in the Coverage table, a count of those records (EntryExitCount), and an array of those records in the same order as the Coverage Index (EntryExitRecord).
 
CursivePosFormat1 subtable: Cursive attachment
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetCoverageOffset to Coverage table-from beginning of CursivePos subtable
uint16EntryExitCountNumber of EntryExit records
structEntryExitRecord[EntryExitCount]Array of EntryExit records-in Coverage Index order
  

Each EntryExitRecord consists of two offsets: one to an Anchor table that identifies the entry point on the glyph (EntryAnchor), and an offset to an Anchor table that identifies the exit point on the glyph (ExitAnchor). (For a complete description of the Anchor table, see the end of this chapter.)

To position glyphs using the CursivePosFormat1 subtable, a text-processing client aligns the ExitAnchor point of a glyph with the EntryAnchor point of the following glyph. If no corresponding anchor point exists, either the EntryAnchor or ExitAnchor offset may be NULL.

At the end of this chapter, Example 6 describes cursive glyph attachment in the Urdu language.
 
EntryExitRecord
TypeNameDescription
OffsetEntryAnchorOffset to EntryAnchor table-from beginning of CursivePos subtable-may be NULL
OffsetExitAnchorOffset to ExitAnchor table-from beginning of CursivePos subtable-may be NULL
  

Lookup Type 4:
MarkToBase Attachment Positioning Subtable

The MarkToBase attachment (MarkBasePos) subtable is used to position combining mark glyphs with respect to base glyphs. For example, the Arabic, Hebrew, and Thai scripts combine vowels, diacritical marks, and tone marks with base glyphs.

In the MarkBasePos subtable, every mark glyph has an anchor point and is associated with a class of marks. Each base glyph then defines an anchor point for each class of marks it uses.

For example, assume two mark classes: all marks positioned above base glyphs (Class 0), and all marks positioned below base glyphs (Class 1). In this case, each base glyph that uses these marks would define two anchor points, one for attaching the mark glyphs listed in Class 0, and one for attaching the mark glyphs listed in Class 1.

To identify the base glyph that combines with a mark, the text-processing client must look backward in the glyph string from the mark to the preceding base glyph. To combine the mark and base glyph, the client aligns their attachment points, positioning the mark with respect to the final pen point (advance) position of the base glyph.

The MarkToBase Attachment subtable has one format: MarkBasePosFormat1. The subtable begins with a format identifier (PosFormat) and offsets to two Coverage tables: one that lists all the mark glyphs referenced in the subtable (MarkCoverage), and one that lists all the base glyphs referenced in the subtable (BaseCoverage).

For each mark glyph in the MarkCoverage table, a record specifies its class and an offset to the Anchor table that describes the mark's attachment point (MarkRecord). A mark class is identified by a specific integer, called a class value. ClassCount specifies the total number of distinct mark classes defined in all the MarkRecords.

The MarkBasePosFormat1 subtable also contains an offset to a MarkArray table, which contains all the MarkRecords stored in an array (MarkRecord) by MarkCoverage Index. A MarkArray table also contains a count of the defined MarkRecords (MarkCount). (For details about MarkArrays and MarkRecords, see the end of this chapter.)

The MarkBasePosFormat1 subtable also contains an offset to a BaseArray table (BaseArray).
 
MarkBasePosFormat1 subtable: MarkToBase attachment point
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetMarkCoverageOffset to MarkCoverage table-from beginning of MarkBasePos subtable
OffsetBaseCoverageOffset to BaseCoverage table-from beginning of MarkBasePos subtable
uint16ClassCountNumber of classes defined for marks
OffsetMarkArrayOffset to MarkArray table-from beginning of MarkBasePos subtable
OffsetBaseArrayOffset to BaseArray table-from beginning of MarkBasePos subtable
  

The BaseArray table consists of an array (BaseRecord) and count (BaseCount) of BaseRecords. The array stores the BaseRecords in the same order as the BaseCoverage Index. Each base glyph in the BaseCoverage table has a BaseRecord.
 
BaseArray table
TypeNameDescription
uint16BaseCountNumber of BaseRecords
structBaseRecord[BaseCount]Array of BaseRecords-in order of BaseCoverage Index
  

A BaseRecord declares one Anchor table for each mark class (including Class 0) identified in the MarkRecords of the MarkArray. Each Anchor table specifies one attachment point used to attach all the marks in a particular class to the base glyph. A BaseRecord contains an array of offsets to Anchor tables (BaseAnchor). The zero-based array of offsets defines the entire set of attachment points each base glyph uses to attach marks. The offsets to Anchor tables are ordered by mark class.

Note: Anchor tables are not tagged with class value identifiers. Instead, the index value of an Anchor table in the array defines the class value represented by the Anchor table.

Example 7 at the end of this chapter defines mark positioning above and below base glyphs with a MarkBasePosFormat1 subtable.
 
BaseRecord
TypeNameDescription
OffsetBaseAnchor[ClassCount]Array of offsets (one per class) to Anchor tables-from beginning of BaseArray table-ordered by class-zero-based
  

Lookup Type 5:
MarkToLigature Attachment Positioning Subtable

The MarkToLigature attachment (MarkLigPos) subtable is used to position combining mark glyphs with respect to ligature base glyphs. With MarkToBase attachment, described previously, a single base glyph defines an attachment point for each class of marks. In contrast, MarkToLigature attachment describes ligature glyphs composed of several components that can each define an attachment point for each class of marks.

As a result, a ligature glyph may have multiple base attachment points for one class of marks. The specific attachment point for a mark is defined by the ligature component that the subtable associates with the mark.

The MarkLigPos subtable can be used to define multiple mark-to-ligature attachments. In the subtable, every mark glyph has an anchor point and is associated with a class of marks. Every ligature glyph specifies a two-dimensional array of data: each component in a ligature defines an array of anchor points, one for each class of marks.

For example, assume two mark classes: all marks positioned above base glyphs (Class 0), and all marks positioned below base glyphs (Class 1). In this case, each component of a base ligature glyph may define two anchor points, one for attaching the mark glyphs listed in Class 0, and one for attaching the mark glyphs listed in Class 1. Alternatively, if the language system does not allow marks on the second component, the first ligature component may define two anchor points, one for each class of marks, and the second ligature component may define no anchor points.

To position a combining mark using a MarkToLigature attachment subtable, the text-processing client must work backward from the mark to the preceding ligature glyph. To correctly access the subtables, the client must keep track of the component associated with the mark. Aligning the attachment points combines the mark and ligature.

The MarkToLigature attachment subtable has one format: MarkLigPosFormat1. The subtable begins with a format identifier (PosFormat) and offsets to two Coverage tables that list all the mark glyphs (MarkCoverage) and Ligature glyphs (LigatureCoverage) referenced in the subtable.

For each glyph in the MarkCoverage table, a MarkRecord specifies its class and an offset to the Anchor table that describes the mark's attachment point. A mark class is identified by a specific integer, called a class value. ClassCount records the total number of distinct mark classes defined in all MarkRecords.

The MarkBasePosFormat1 subtable contains an offset, measured from the beginning of the subtable, to a MarkArray table, which contains all MarkRecords stored in an array (MarkRecord) by MarkCoverage Index. (For details about MarkArrays and MarkRecords, see the end of this chapter.)

The MarkLigPosFormat1 subtable also contains an offset to a LigatureArray table (LigatureArray).
 
MarkLigPosFormat1 subtable: MarkToLigature attachment
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetMarkCoverageOffset to Mark Coverage table-from beginning of MarkLigPos subtable
OffsetLigatureCoverageOffset to Ligature Coverage table-from beginning of MarkLigPos subtable
uint16ClassCountNumber of defined mark classes
OffsetMarkArrayOffset to MarkArray table-from beginning of MarkLigPos subtable
OffsetLigatureArrayOffset to LigatureArray table-from beginning of MarkLigPos subtable
  

The LigatureArray table contains a count (LigatureCount) and an array of offsets (LigatureAttach) to LigatureAttach tables. The LigatureAttach array lists the offsets to

LigatureAttach tables, one for each ligature glyph listed in the LigatureCoverage table, in the same order as the LigatureCoverage Index.
 
LigatureArray table
TypeNameDescription
uint16LigatureCountNumber of LigatureAttach table offsets
OffsetLigatureAttach
[LigatureCount]
Array of offsets to LigatureAttach tables-from beginning of LigatureArray table-ordered by LigatureCoverage Index
  

Each LigatureAttach table consists of an array (ComponentRecord) and count (ComponentCount) of the component glyphs in a ligature. The array stores the ComponentRecords in the same order as the components in the ligature. The order of the records also corresponds to the writing direction of the text. For text written left to right, the first component is on the left; for text written right to left, the first component is on the right.
 
LigatureAttach table
TypeNameDescription
uint16ComponentCountNumber of ComponentRecords in this ligature
structComponentRecord[ComponentCount]Array of Component records-ordered by LookupFlag direction bit
  

A ComponentRecord, one for each component in the ligature, contains an array of offsets to the Anchor tables that define all the attachment points used to attach marks to the component (LigatureAnchor). For each mark class (including Class 0) identified in the MarkArray records, an Anchor table specifies the point used to attach all the marks in a particular class to the ligature base glyph, relative to the component.

In a ComponentRecord, the zero-based LigatureAnchor array lists offsets to Anchor tables by mark class. If a component does not define an attachment point for a particular class of marks, then the offset to the corresponding Anchor table will be NULL.

Example 8 at the end of this chapter shows a MarkLisPosFormat1 subtable used to attach mark accents to a ligature glyph in the Arabic script.
 
ComponentRecord
TypeNameDescription
OffsetLigatureAnchor
[ClassCount]
Array of offsets (one per class) to Anchor tables-from beginning of LigatureAttach table-ordered by class-NULL if a component does not have an attachment for a class-zero-based array
  

Lookup Type 6:
MarkToMark Attachment Positioning Subtable

The MarkToMark attachment (MarkMarkPos) subtable is identical in form to the MarkToBase attachment subtable, although its function is different. MarkToMark attachment defines the position of one mark relative to another mark as when, for example, positioning tone marks with respect to vowel diacritical marks in Vietnamese.

The attaching mark is Mark1, and the base mark being attached to is Mark2. In the MarkMarkPos subtable, every Mark1 glyph has an anchor attachment point and is associated with a class of marks. Each Mark2 glyph defines an anchor point for each class of marks. For example, assume two Mark1 classes: all marks positioned to the left of Mark2 glyphs (Class 0), and all marks positioned to the right of Mark2 glyphs (Class 1). Each Mark2 glyph that uses these marks defines two anchor points: one for attaching the Mark1 glyphs listed in Class 0, and one for attaching the Mark1 glyphs listed in Class 1.

To identify the Mark2 glyph that combines with a Mark1 glyph, the text-processing client must move backward in the glyph string order from the Mark1 glyph to the preceding mark, which becomes Mark2. Aligning the attachment points combines the mark glyphs.

The MarkToMark attachment subtable has one format: MarkMarkPosFormat1. The subtable begins with a format identifier (PosFormat) and offsets to two Coverage tables: one that lists all the Mark1 glyphs referenced in the subtable (Mark1Coverage), and one that lists all the Mark2 glyphs referenced in the subtable (Mark2Coverage).

For each mark glyph in the Mark1Coverage table, a MarkRecord specifies its class and an offset to the Anchor table that describes the mark's attachment point. A mark class is identified by a specific integer, called a class value. (For details about classes, see the chapter, Common Table Formats.) ClassCount specifies the total number of distinct mark classes defined in all the MarkRecords.

The MarkMarkPosFormat1 subtable also contains two offsets, measured from the beginning of the subtable, to two arrays:

For details about MarkArrays and MarkRecords, see the end of this chapter.
 
MarkMarkPosFormat1 subtable:
MarkToMark attachment
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetMark1CoverageOffset to Combining Mark Coverage table-from beginning of MarkMarkPos subtable
OffsetMark2CoverageOffset to Base Mark Coverage table-from beginning of MarkMarkPos subtable
uint16ClassCountNumber of Combining Mark classes defined
OffsetMark1ArrayOffset to MarkArray table for Mark1-from beginning of MarkMarkPos subtable
OffsetMark2ArrayOffset to Mark2Array table for Mark2-from beginning of MarkMarkPos subtable
  

The Mark2Array, shown next, contains one Mark2Record for each Mark2 glyph listed in the Mark2Coverage table. It stores the records in the same order as the Mark2Coverage Index.
 
Mark2Array table
TypeNameDescription
uint16Mark2CountNumber of Mark2 records
structMark2Record
[Mark2Count]
Array of Mark2 records-in Coverage order
  

Each Mark2Record contains an array of offsets to Anchor tables (Mark2Anchor). The array of zero-based offsets, measured from the beginning of the Mark2Array table, defines the entire set of Mark2 attachment points used to attach Mark1 glyphs to a specific Mark2 glyph. The Anchor tables in the Mark2Anchor array are ordered by Mark1 class value.

A Mark2Record declares one Anchor table for each mark class (including Class 0) identified in the MarkRecords of the MarkArray. Each Anchor table specifies one Mark2 attachment point used to attach all the Mark1 glyphs in a particular class to the Mark2 glyph.

Example 9 at the end of the chapter shows a MarkMarkPosFormat1 subtable for attaching one mark to another in the Arabic script.
 
Mark2Record
TypeNameDescription
OffsetMark2Anchor
[ClassCount]
Array of offsets (one per class) to Anchor tables-from beginning of Mark2Array table-zero-based array
  

Lookup Type 7:
Contextual Positioning Subtables

A Contextual Positioning (ContextPos) subtable defines the most powerful type of glyph positioning lookup. It describes glyph positioning in context so a text-processing client can adjust the position of one or more glyphs within a certain pattern of glyphs. Each subtable describes one or more "input" glyph sequences and one or more positioning operations to be performed on that sequence.

ContextPos subtables can have one of three formats, which closely mirror the formats used for contextual glyph substitution. One format applies to specific glyph sequences (Format 1), one defines the context in terms of glyph classes (Format 2), and the third format defines the context in terms of sets of glyphs (Format 3).

All ContextPos subtables specify positioning data in a PosLookupRecord. A description of that record follows the descriptions of the three formats available for ContextPos subtables.

Context Positioning Subtable: Format 1

Format 1 defines the context for a glyph positioning operation as a particular sequence of glyphs. For example, a context could be <To>, <xyzabc>, <!?*#@>, or any other glyph sequence.

Within the context, Format 1 identifies particular glyph positions (not glyph indices) as the targets for specific adjustments. When a text-processing client locates a context in a string of text, it makes the adjustment by applying the lookup data defined for a targeted position at that location.

For example, suppose that accent mark glyphs above lowercase x-height vowel glyphs must be lowered when an overhanging capital letter glyph precedes the vowel. When the client locates this context in the text, the subtable identifies the position of the accent mark and a lookup index. A lookup specifies a positioning action that lowers the accent mark over the vowel so that it does not collide with the overhanging capital.

ContextPosFormat1 defines the context in two places. A Coverage table specifies the first glyph in the input sequence, and a PosRule table identifies the remaining glyphs. To describe the context used in the previous example, the Coverage table lists the glyph index of the first component of the sequence (the overhanging capital), and a PosRule table defines indices for the lowercase x-height vowel glyph and the accent mark.

Note: The glyph order in the context sequence depends on the writing direction of the text. For text written from right to left, the right-most glyph will be first. Conversely, for text written from left to right, the left-most glyph will be first.

A single ContextPosFormat1 subtable may define more than one context glyph sequence. If different context sequences begin with the same glyph, then the Coverage table should list the glyph only once because all first glyphs in the table must be unique. For example, if three contexts each start with an "s" and two start with a "t," then the Coverage table will list one "s" and one "t."

For each context, a PosRule table lists all the glyphs, in order, that follow the first glyph. The table also contains an array of PosLookupRecords that specify the positioning lookup data for each glyph position (including the first glyph position) in the context.

All the PosRule tables defining contexts that begin with the same first glyph are grouped together and defined in a PosRuleSet table. For example, the PosRule tables that define the three contexts that begin with an "s" are grouped in one PosRuleSet table, and the PosRule tables that define the two contexts that begin with a "t" are grouped in a second PosRuleSet table. Each unique glyph listed in the Coverage table must have a PosRuleSet table that defines all the PosRule tables for a covered glyph.

To locate a context glyph sequence, the text-processing client searches the Coverage table each time it encounters a new text glyph. If the glyph is covered, the client reads the corresponding PosRuleSet table and examines each PosRule table in the set to determine whether the rest of the context defined there matches the subsequent glyphs in the text. If the context and text string match, the client finds the target glyph position, applies the lookup for that position, and completes the positioning action.

A ContextPosFormat1 subtable contains a format identifier (PosFormat), an offset to a Coverage table (Coverage), a count of the number of PosRuleSets that are defined (PosRuleSetCount), and an array of offsets to the PosRuleSet tables (PosRuleSet). As mentioned, one PosRuleSet table must be defined for each glyph listed in the Coverage table.

In the PosRuleSet array, the PosRuleSet tables are ordered in the Coverage Index order. The first PosRuleSet in the array applies to the first GlyphID listed in the Coverage table, the second PosRuleSet in the array applies to the second GlyphID listed in the Coverage table, and so on.
 
ContextPosFormat1 subtable: Simple context positioning
TypeNameDescription
uint16PosFormatFormat identifier-format = 1
OffsetCoverageOffset to Coverage table-from beginning of ContextPos subtable
uint16PosRuleSetCountNumber of PosRuleSet tables
OffsetPosRuleSet
[PosRuleSetCount]
Array of offsets to PosRuleSet tables-from beginning of ContextPos subtable-ordered by Coverage Index
  

A PosRuleSet table consists of an array of offsets to PosRule tables (PosRule), ordered by preference, and a count of the PosRule tables defined in the set (PosRuleCount).
 
PosRuleSet table: All contexts beginning with the same glyph
TypeNameDescription
uint16PosRuleCountNumber of PosRule tables
OffsetPosRule
[PosRuleCount]
Array of offsets to PosRule tables-from beginning of PosRuleSet-ordered by preference
  

A PosRule table consists of a count of the glyphs to be matched in the input context sequence (GlyphCount), including the first glyph in the sequence, and an array of glyph indices that describe the context (Input). The Coverage table specifies the index of the first glyph in the context, and the Input array begins with the second glyph in the context sequence. As a result, the first index position in the array is specified with the number one (1), not zero (0). The Input array lists the indices in the order the corresponding glyphs appear in the text. For text written from right to left, the right-most glyph will be first; conversely, for text written from left to right, the left-most glyph will be first.

A PosRule table also contains a count of the positioning operations to be performed on the input glyph sequence (PosCount) and an array of PosLookupRecords (PosLookupRecord). Each record specifies a position in the input glyph sequence and a LookupList index to the positioning lookup to be applied there. The array should list records in design order, or the order the lookups should be applied to the entire glyph sequence.

Example 10 at the end of this chapter demonstrates glyph kerning in context with a ContextPosFormat1 subtable.
 
PosRule table: One simple context definition
TypeNameDescription
uint16GlyphCountNumber of glyphs in the Input glyph sequence
uint16PosCountNumber of PosLookupRecords
GlyphIDInput
[GlyphCount - 1]
Array of input GlyphIDs-starting with the second glyph
structPosLookupRecord[PosCount]Array of positioning lookups-in design order
  

Context Positioning Subtable: Format 2

Format 2, more flexible than Format 1, describes class-based context positioning. For this format, a specific integer, called a class value, must be assigned to each glyph in all context glyph sequences. Contexts are then defined as sequences of class values. This subtable may define more than one context.

To clarify the notion of class-based context rules, suppose that certain sequences of three glyphs need special kerning. The glyph sequences consist of an uppercase glyph that overhangs on the right side, a punctuation mark glyph, and then a quote glyph. In this case, the set of uppercase glyphs would constitute one glyph class (Class1), the set of punctuation mark glyphs would constitute a second glyph class (Class 2), and the set of quote mark glyphs would constitute a third glyph class (Class 3). The input context might be specified with a context rule (PosClassRule) that describes "the set of glyph strings that form a sequence of three glyph classes, one glyph from Class 1, followed by one glyph from Class 2, followed by one glyph from Class 3."

Each ContextPosFormat2 subtable contains an offset to a class definition table (ClassDef), which defines the class values of all glyphs in the input contexts that the subtable describes. Generally, a unique ClassDef will be declared in each instance of the ContextPosFormat2 subtable that is included in a font, even though several Format 2 subtables may share ClassDef tables. Classes are exclusive sets; a glyph cannot be in more than one class at a time. The output glyphs that replace the glyphs in the context sequence do not need class values because they are specified elsewhere by GlyphID.

The ContextPosFormat2 subtable also contains a format identifier (PosFormat) and defines an offset to a Coverage table (Coverage). For this format, the Coverage table lists indices for the complete set of glyphs (not glyph classes) that may appear as the first glyph of any class-based context. In other words, the Coverage table contains the list of glyph indices for all the glyphs in all classes that may be first in any of the context class sequences. For example, if the contexts begin with a Class 1 or Class 2 glyph, then the Coverage table will list the indices of all Class 1 and Class 2 glyphs. This Coverage listing is redundant because the ClassDef table also identifies input glyphs, but it accelerates the lookup process.

A ContextPosFormat2 subtable also defines an array of offsets to the PosClassSet tables (PosClassSet), along with a count (including Class0) of the PosClassSet tables (PosClassSetCnt). In the array, the PosClassSet tables are ordered by ascending class value (from 0 to PosClassSetCnt - 1).

A PosClassSet array contains one offset for each glyph class, including Class 0. PosClassSets are not explicitly tagged with a class value; rather, the index value of the PosClassSet in the PosClassSet array defines the class that a PosClassSet represents.

For example, the first PosClassSet listed in the array contains all the PosClassRules that define contexts beginning with Class 0 glyphs, the second PosClassSet contains all PosClassRules that define contexts beginning with Class 1 glyphs, and so on. If no PosClassRules begin with a particular class (that is, if a PosClassSet contains no PosClassRules), then the offset to that particular PosClassSet in the PosClassSet array will be set to NULL.
 
ContextPosFormat2 subtable: Class-based context glyph positioning
TypeNameDescription
uint16PosFormatFormat identifier-format = 2
OffsetCoverageOffset to Coverage table-from beginning of ContextPos subtable
OffsetClassDefOffset to ClassDef table-from beginning of ContextPos subtable
uint16PosClassSetCntNumber of PosClassSet tables
OffsetPosClassSet
[PosClassSetCnt]
Array of offsets to PosClassSet tables-from beginning of ContextPos subtable-ordered by class-may be NULL
  

All the PosClassRules that define contexts beginning with the same class are grouped together and defined in a PosClassSet table. Consequently, the PosClassSet table identifies the class of a context's first component.

A PosClassSet enumerates all the PosClassRules that begin with a particular glyph class. For instance, PosClassSet0 represents all the PosClassRules that describe contexts starting with Class 0 glyphs, and PosClassSet1 represents all the PosClassRules that define contexts starting with Class 1 glyphs.

Each PosClassSet table consists of a count of the PosClassRules defined in the PosClassSet (PosClassRuleCnt) and an array of offsets to PosClassRule tables (PosClassRule). The PosClassRule tables are ordered by preference in the PosClassRule array of the PosClassSet.
 
PosClassSet table: All contexts beginning with the same class
TypeNameDescription
uint16PosClassRuleCntNumber of PosClassRule tables
OffsetPosClassRule[PosClassRuleCnt]Array of offsets to PosClassRule tables-from beginning of PosClassSet-ordered by preference
  

For each context, a PosClassRule table contains a count of the glyph classes in a given context (GlyphCount), including the first class in the context sequence. A class array lists the classes, beginning with the second class, that follow the first class in the context. The first class listed indicates the second position in the context sequence.

Note: Text order depends on the writing direction of the text. For text written from right to left, the right-most glyph will be first. Conversely, for text written from left to right, the left-most glyph will be first.

The values specified in the Class array are those defined in the ClassDef table. For example, consider a context consisting of the sequence: Class 2, Class 7, Class 5, Class 0. The Class array will read: Class[0] = 7, Class[1] = 5, and Class[2] = 0. The first class in the sequence, Class 2, is defined by the index into the PosClassSet array of offsets. The total number and sequence of glyph classes listed in the Class array must match the total number and sequence of glyph classes contained in the input context.

A PosClassRule also contains a count of the positioning operations to be performed on the context (PosCount) and an array of PosLookupRecords (PosLookupRecord) that supply the positioning data. For each position in the context that requires a positioning operation, a PosLookupRecord specifies a LookupList index and a position in the input glyph class sequence where the lookup is applied. The PosLookupRecord array lists PosLookupRecords in design order, or the order in which lookups are applied to the entire glyph sequence.

Example 11 at the end of this chapter demonstrates a ContextPosFormat2 subtable that uses glyph classes to modify accent positions in glyph strings.
 
PosClassRule table: One class context definition
TypeNameDescription
uint16GlyphCountNumber of glyphs to be matched
uint16PosCountNumber of PosLookupRecords
uint16Class
[GlyphCount - 1]
Array of classes-beginning with the second class-to be matched to the input glyph sequence
structPosLookupRecord[PosCount]Array of positioning lookups-in design order
  

Context Positioning Subtable: Format 3

Format 3, coverage-based context positioning, defines a context rule as a sequence of coverages. Each position in the sequence may specify a different Coverage table for the set of glyphs that matches the context pattern. With Format 3, the glyph sets defined in the different Coverage tables may intersect, unlike Format 2 which specifies fixed class assignments for the lookup (they cannot be changed at each position in the context sequence) and exclusive classes (a glyph cannot be in more than one class at a time).

For example, consider an input context that contains an uppercase glyph (position 0), followed by any narrow uppercase glyph (position 1), and then another uppercase glyph (position 2). This context requires three Coverage tables, one for each position:

Note: Both position 0 and position 2 can use the same Coverage table.

Unlike Formats 1 and 2, this format defines only one context rule at a time. It consists of a format identifier (PosFormat), a count of the number of glyphs in the sequence to be matched (GlyphCount), and an array of Coverage offsets that describe the input context sequence (Coverage).

Note: The Coverage tables listed in the Coverage array must be listed in text order according to the writing direction. For text written from right to left, the right-most glyph will be first. Conversely, for text written from left to right, the left-most glyph will be first.

The subtable also contains a count of the positioning operations to be performed on the input Coverage sequence (PosCount) and an array of PosLookupRecords (PosLookupRecord) in design order, or the order in which lookups are applied to the entire glyph sequence.

Example 12 at the end of this chapter changes the positions of math sign glyphs in math equations with a ContextPosFormat3 subtable.
 
ContextPosFormat3 subtable: Coverage-based context glyph positioning
TypeNameDescription
uint16PosFormatFormat identifier-format = 3
uint16GlyphCountNumber of glyphs in the input sequence
uint16PosCountNumber of PosLookupRecords
OffsetCoverage
[GlyphCount]
Array of offsets to Coverage tables-from beginning of ContextPos subtable
structPosLookupRecord
[PosCount]
Array of positioning lookups-in design order
  

PosLookupRecord

All contextual positioning subtables specify the positioning data in a PosLookupRecord. Each record contains a SequenceIndex, which indicates where the positioning operation will occur in the glyph sequence. In addition, a LookupListIndex identifies the lookup to be applied at the glyph position specified by the SequenceIndex.

The order in which lookups are applied to the entire glyph sequence, called the "design order," can be significant, so PosLookupRecord data should be defined accordingly.

The contextual substitution subtables defined in Examples 10, 11, and 12 show PosLookupRecords.
 
PosLookupRecord
TypeNameDescription
uint16SequenceIndexIndex to input glyph sequence-first glyph = 0
uint16LookupListIndexLookup to apply to that position-zero-based
  

Shared Tables:
ValueRecord, Anchor Table, and MarkArray

Several lookup subtables described earlier in this chapter refer to one or more of the same tables for positioning data: ValueRecord, Anchor table, and MarkArray. For easy reference, those shared tables are described here.

Example 14 at the end of the chapter uses a ValueFormat table and ValueRecord to specify positioning values in GPOS.

ValueRecord

GPOS subtables use ValueRecords to describe all the variables and values used to adjust the position of a glyph or set of glyphs. A ValueRecord may define any combination of X and Y values (in design units) to add to (positive values) or subtract from (negative values) the placement and advance values provided in the font. A ValueRecord also may contain an offset to a Device table for each of the specified values. If a ValueRecord specifies more than one value, the values should be listed in the order shown in the ValueRecord definition.

The text-processing client must be aware of the flexible and multi-dimensional nature of ValueRecords in the GPOS table. Because the GPOS table uses ValueRecords for many purposes, the sizes and contents of ValueRecords may vary from subtable to subtable.
 
ValueRecord (all fields are optional)
TypeNameDescription
int16XPlacementHorizontal adjustment for placement-in design units
int16YPlacementVertical adjustment for placement-in design units
int16XAdvanceHorizontal adjustment for advance-in design units
int16YAdvanceVertical adjustment for advance-in design units
OffsetXPlaDeviceOffset to Device table for horizontal placement-measured from beginning of PosTable
OffsetYPlaDeviceOffset to Device table for vertical placement-measured from beginning of PosTable
OffsetXAdvDeviceOffset to Device table for horizontal advance-measured from beginning of PosTable
OffsetYAdvDeviceOffset to Device table for vertical advance-measured from beginning of PosTable
  

A data format (ValueFormat), usually declared at the beginning of each GPOS subtable, defines the types of positioning adjustment data that ValueRecords specify. Usually, the same ValueFormat applies to every ValueRecord defined in the particular GPOS subtable.

The ValueFormat determines whether the ValueRecords:

Each one-bit in the ValueFormat corresponds to a field in the ValueRecord and increases the size of the ValueRecord by 2 bytes. A ValueFormat of 0x0000 corresponds to an empty ValueRecord, which indicates no positioning changes.

To identify the fields in each ValueRecord, the ValueFormat uses the bit settings shown below. To specify multiple fields with a ValueFormat, the bit settings of the relevant fields are added with a logical OR operation.

For example, to adjust the left-side bearing of a glyph, the ValueFormat will be 0x0001, and the ValueRecord will define the XPlacement value. To adjust the advance width of a different glyph, the ValueFormat will be 0x0004, and the ValueRecord will describe the XAdvance value. To adjust both the XPlacement and XAdvance of a set of glyphs, the ValueFormat will be 0x0005, and the ValueRecord will specify both values in the order they are listed in the ValueRecord definition.
 
ValueFormat bit enumeration (indicates which fields are present)
MaskNameDescription
0x0001XPlacementIncludes horizontal adjustment for placement
0x0002YPlacementIncludes vertical adjustment for placement
0x0004XAdvanceIncludes horizontal adjustment for advance
0x0008YAdvanceIncludes vertical adjustment for advance
0x0010XPlaDeviceIncludes horizontal Device table for placement
0x0020YPlaDeviceIncludes vertical Device table for placement
0x0040XAdvDeviceIncludes horizontal Device table for advance
0x0080YAdvDeviceIncludes vertical Device table for advance
0xFF00ReservedFor future use
  

Anchor Table

A GPOS table uses anchor points to position one glyph with respect to another. Each glyph defines an anchor point, and the text-processing client attaches the glyphs by aligning their corresponding anchor points.

To describe an anchor point, an Anchor table can use one of three formats. The first format uses design units to specify a location for the anchor point. The other two formats refine the location of the anchor point using contour points (Format 2) or Device tables (Format 3).

Anchor Table: Format 1

AnchorFormat1 consists of a format identifier (AnchorFormat) and a pair of design unit coordinates (XCoordinate and YCoordinate) that specify the location of the anchor point. This format has the benefits of small size and simplicity, but the anchor point cannot be hinted to adjust its position for different device resolutions.

Example 15 at the end of this chapter uses AnchorFormat1.
 
AnchorFormat1 table: Design units only
TypeNameDescription
uint16AnchorFormatFormat identifier-format = 1
int16XCoordinateHorizontal value-in design units
int16YCoordinateVertical value-in design units
  

Anchor Table: Format 2

Like AnchorFormat1, AnchorFormat2 specifies a format identifier (AnchorFormat) and a pair of design unit coordinates for the anchor point (Xcoordinate and Ycoordinate).

For fine-tuning the location of the anchor point, AnchorFormat2 also provides an index to a glyph contour point (AnchorPoint) that is on the outline of a glyph (AnchorPoint). Hinting can be used to move the AnchorPoint. In the rendered text, the AnchorPoint will provide the final positioning data for a given ppem size.

Example 16 at the end of this chapter uses AnchorFormat2.
 
AnchorFormat2 table: Design units plus contour point
TypeNameDescription
uint16AnchorFormatFormat identifier-format = 2
int16XCoordinateHorizontal value-in design units
int16YCoordinateVertical value-in design units
uint16AnchorPointIndex to glyph contour point
  

Anchor Table: Format 3

Like AnchorFormat1, AnchorFormat3 specifies a format identifier (AnchorFormat) and locates an anchor point (Xcoordinate and Ycoordinate). And, like AnchorFormat 2, it permits fine adjustments to the coordinate values. However, AnchorFormat3 uses Device tables, rather than a contour point, for this adjustment.

With a Device table, a client can adjust the position of the anchor point for any font size and device resolution. AnchorFormat3 can specify offsets to Device tables for the the X coordinate (XDeviceTable) and the Y coordinate (YDeviceTable). If only one coordinate requires adjustment, the offset to the Device table may be set to NULL for the other coordinate.

Example 17 at the end of the chapter shows an AnchorFormat3 table.
 
AnchorFormat3 table: Design units plus Device tables
TypeNameDescription
uint16AnchorFormatFormat identifier-format = 3
int16XCoordinateHorizontal value-in design units
int16YCoordinateVertical value-in design units
OffsetXDeviceTableOffset to Device table for X coordinate- from beginning of Anchor table- may be NULL
OffsetYDeviceTableOffset to Device table for Y coordinate- from beginning of Anchor table- may be NULL
  

Mark Array

The MarkArray table defines the class and the anchor point for a mark glyph. Three GPOS subtables-MarkToBase, MarkToLigature, and MarkToMark Attachment-use the MarkArray table to specify data for attaching marks.

The MarkArray table contains a count of the number of mark records (MarkCount) and an array of those records (MarkRecord). Each mark record defines the class of the mark and an offset to the Anchor table that contains data for the mark.

A class value can be 0 (zero), but the MarkRecord must explicitly assign that class value (this differs from the ClassDef table, in which all glyphs not assigned class values automatically belong to Class 0). The GPOS subtables that refer to MarkArray tables use the class assignments for indexing zero-based arrays that contain data for each mark class.

In Example 18 at the end of the chapter, a MarkArray table and two MarkRecords define two mark classes.
 
MarkArray table
TypeNameDescription
uint16MarkCountNumber of MarkRecords
structMarkRecord
[MarkCount]
Array of MarkRecords-in Coverage order
  
 
MarkRecord
TypeNameDescription
uint16ClassClass defined for this mark
OffsetMarkAnchorOffset to Anchor table-from beginning of MarkArray table
  

GPOS Subtable Examples

The rest of this chapter describes examples of all the GPOS subtable formats, including each of the three formats available for contextual positioning. All the examples reflect unique parameters described below, but the samples provide a useful reference for building subtables specific to other situations.

All the examples have three columns showing hex data, source, and comments.

Example 1: GPOS Header Table

Example 1 shows a typical GPOS Header table definition with offsets to a ScriptList, FeatureList, and LookupList.
 
Example 1
Hex DataSourceComments
 GPOSHeader
TheGPOSHeader
GPOSHeader table definition
000100000x00010000Version
000ATheScriptListoffset to ScriptList table
001ETheFeatureListoffset to FeatureList table
002CTheLookupListoffset to LookupList table
  

Example 2: SinglePosFormat1 Subtable

Example 2 uses the SinglePosFormat1 subtable to lower the Y placement of subscript glyphs in a font. The LowerSubscriptsSubTable defines one Coverage table, called LowerSubscriptsCoverage, which lists one range of glyph indices for the numeral/numeric subscript glyphs. The subtable's ValueFormat setting indicates that the ValueRecord specifies only the YPlacement value, lowering each subscript glyph by 80 design units.
 
Example 2
Hex DataSourceComments
  SinglePosFormat1
LowerSubscriptsSubTable
SinglePos subtable definition
00011PosFormat
0008LowerSubscriptsCoverageoffset to Coverage table
00020x0002ValueFormat, YPlacement,Value[0], move Y position down
FFB0-80
 CoverageFormat2
LowerSubscriptsCoverage
Coverage table definition
00022CoverageFormat
00011RangeCount
RangeRecord[0]
01B3ZeroSubscriptGlyphIDStart, first glyphID
01BCNineSubscriptGlyphIDEnd, last glyphID
00000StartCoverageIndex
  

Example 3: SinglePosFormat2 Subtable

This example uses a SinglePosFormat2 subtable to adjust the spacing of three dash glyphs by different amounts. The em dash spacing changes by 10 units, the en dash spacing changes by 25 units, and spacing of the standard dash changes by 50 units.

The DashSpacingSubTable contains one Coverage table with three dash glyph indices, plus an array of ValueRecords, one for each covered glyph. The ValueRecords use the same ValueFormat to modify the XPlacement and XAdvance values of each glyph. The ValueFormat bit setting of 0x0005 is produced by adding the XPlacement and XAdvance bit settings.
 
Example 3
Hex DataSourceComments
 SinglePosFormat2
DashSpacingSubTable
SinglePos subtable definition
00022PosFormat
0014DashSpacingCoverageoffset to Coverage table
00050x0005ValueFormat for XPlacement and XAdvance
00033ValueCount Value[0], for dash glyph
003250XPlacement
003250XAdvance
Value[1], for en dash glyph
001925XPlacement
001925XAdvance
Value[2], for em dash glyph
000A10XPlacement
000A10XAdvance
 CoverageFormat1
DashSpacingCoverage
Coverage table definition
00011CoverageFormat
00033GlyphCount
004FDashGlyphIDGlyphArray[0]
0125EnDashGlyphIDGlyphArray[1]
0129EmDashGlyphIDGlyphArray[2]
  

Example 4: PairPosFormat1 Subtable

Example 4 uses a PairPosFormat1 subtable to kern two glyph pairs - "Po" and "To" - by adjusting the XAdvance of the first glyph and the XPlacement of the second glyph. Two ValueFormats are defined, one for each glyph. The subtable contains a Coverage table that lists the index of the first glyph in each pair. It also contains an offset to a PairSet table for each covered glyph.

A PairSet table defines an array of PairValueRecords to specify all the glyph pairs that contain a covered glyph as their first component. In this example, the PPairSet table has one PairValueRecord that identifies the second glyph in the "Po" pair and two ValueRecords, one for the first glyph and one for the second. The TPairSet table also has one PairValueRecord that lists the second glyph in the "To" pair and two ValueRecords, one for each glyph.
 
Example 4
Hex DataSourceComments
 PairPosFormat1
PairKerningSubTable
PairPos subtable definition
00011PosFormat
001EPairKerningCoverageoffset to Coverage table
00040x0004ValueFormat1
XAdvance only
00010x0001ValueFormat2
XPlacement only
00022PairSetCount
000EPPairSetTablePairSet[0]
0016TPairSetTablePairSet[1]
 PairSetTable
PPairSetTable
PairSet table definition
00011PairValueCount, one pair in set PairValueRecord[0]
0059LowercaseOGlyphIDSecondGlyph
FFE2-30Value 1, XAdvance adjustment for first glyph
FFEC-20Value 2, XPlacement adjustment for second glyph
 PairSetTable
PairSetTable
PairSet table definition
00011PairValueCount one pair in set PairValueRecord[0]
0059LowercaseOGlyphIDSecondGlyph
FFD8-40Value1 XAdvance adjustment for first glyph
FFE7-25Value 2 XPlacement adjustment for second glyph
 CoverageFormat1
PairKerningCoverage
Coverage table definition
00011CoverageFormat
00022GlyphCount
002DUppercasePGlyphIDGlyphArray[0]
0031UppercaseTGlyphIDGlyphArray[1]
  

Example 5: PairPosFormat2 Subtable

The PairPosFormat2 subtable in this example defines pairs composed of two glyph classes. Two ClassDef tables are defined, one for each glyph class. The first glyph in each pair is in a class of lowercase glyphs with diagonal shapes (v, w, y), defined Class1 in the LowercaseClassDef table. The second glyph in each pair is in a class of punctuation glyphs (comma and period), defined in Class1 in the PunctuationClassDef table. The Coverage table only lists the indices of the glyphs in the LowercaseClassDef table since they occupy the first position in the pairs.

The subtable defines two Class1Records for the classes defined in LowecaseClassDef, including Class0. Each record, in turn, defines a Class2Record for each class defined in PunctuationClassDef, including Class0. The Class2Records specify the positioning adjustments for the glyphs.

The pairs are kerned by reducing the XAdvance of the first glyph by 50 design units. Because no positioning change applies to the second glyph, its ValueFormat2 is set to 0, to indicate that Value2 is empty for each pair.

Since no pairs begin with Class0 or Class2 glyphs, all the ValueRecords referenced in Class1Record[0] contain values of 0 or are empty. However, Class1Record[1] does define an XAdvance value in its Class2Record[1] for kerning all pairs that contain a Class1 glyph followed by a Class2 glyph.
 
Example 5
Hex DataSourceComments
 PairPosFormat2
PunctKerningSubTable
PairPos subtable definition
00022PosFormat
0018PunctKerningCoverageoffset to Coverage table
00040x0004ValueFormat1 XAdvance only
00000ValueFormat2 no ValueRecord for second glyph
0022LowercaseClassDefoffset to ClassDef1 table for first class in pair
0032PunctuationClassDefoffset to ClassDef2 table for second class in pair
00022Class1Count
00022Class2Count
Class1Record[0], no contexts begin with Class0
Class2Record[0]
00000Value1- no change for first glyph, Value2 no ValueRecord for second glyph Class2Record[1]
00000Value1- no change for first glyph, Value2 no ValueRecord for second glyph Class1Record[1], for contexts beginning with Class1
Class2Record[0] no contexts with Class0 as second glyph
00000Value1-no change for first glyph, Value2-no ValueRecord for second glyph
Class2Record[1]contexts with Class1 as second glyph
FFCE-50Value1- move punctuation glyph left, Value2- no ValueRecord for second glyph
 CoverageFormat1
PunctKerningCoverage
Coverage table definition
00011CoverageFormat, lists
00033GlyphCount
0046LowercaseVGlyphIDGlyphArray[0]
0047LowercaseWGlyphIDGlyphArray[1]
0049LowercaseYGlyphIDGlyphArray[2]
 ClassDefFormat2
LowercaseClassDef
ClassDef table definition
00022ClassFormat
00022ClassRangeCount
ClassRangeRecord[0]
0046LowercaseVGlyphIDStart
0047LowercaseWGlyphIDEnd
00011Class
ClassRangeRecord[1]
0049LowercaseYGlyphIDStart
0049LowercaseYGlyphIDEnd
00011Class
 ClassDefFormat2
PunctuationClassDef
ClassDef table definition
00022ClassFormat
00011ClassRangeCount
ClassRangeRecord[0]
006APeriodPunctGlyphIDStart
006BCommaPunctGlyphIDEnd
00011Class
  

Example 6: CursivePosFormat1 Subtable

In Example 6, the Urdu language system uses a CursivePosFormat1 subtable to attach glyphs along a diagonal baseline that descends from right to left. Two glyphs are defined with attachment data and listed in the Coverage table-the Kaf and Ha glyphs. For each glyph, the subtable contains an EntryExitRecord that defines offsets to two Anchor tables, an entry attachment point, and an exit attachment point. Each Anchor table defines X and Y coordinate values. To render Urdu down and diagonally, the entry point's Y coordinate is above the baseline and the exit point's Y coordinate is located below the baseline.
 
Example 6
Hex DataSourceComments
 CursivePosFormat1
DiagonalWritingSubTable
CursivePos subtable definition
00011PosFormat
000EDiagonalWritingCoverageoffset to Coverage table
00022EntryExitCount
EntryExitRecord[0] for Kaf glyph
0016KafEntryAnchoroffset to EntryAnchor table
001CKafExitAnchoroffset to ExitAnchor table
EntryExitRecord[1] for Ha glyph
0022HaEntryAnchoroffset to EntryAnchor table
0028HaExitAnchoroffset to ExitAnchor table
 CoverageFormat1
DiagonalWritingCoverage
Coverage table definition
00011CoverageFormat
00022GlyphCount
0203KafGlyphIDGlyphArray[0]
027EHaGlyphIDGlyphArray[1]
 AnchorFormat1
KafEntryAnchor
Anchor table definition
00011AnchorFormat
05DC1500XCoordinate
002C44YCoordinate
 AnchorFormat1
KafExitAnchor
Anchor table definition
00011AnchorFormat
00000XCoordinate
FFEC-20YCoordinate
 AnchorFormat1
HaEntryAnchor
Anchor table definition
00011AnchorFormat
05DC1500XCoordinate
002C44YCoordinate
 AnchorFormat1
HaExitAnchor
Anchor table definition
00011AnchorFormat
00000XCoordinate
FFEC-20Ycoordinate
  

Example 7: MarkBasePosFormat1 Subtable

The MarkBasePosFormat1 subtable in Example 7 defines one Arabic base glyph, Tah, and two Arabic mark glyphs: a fathatan mark above the base glyph, and a kasra mark below the base glyph. The BaseGlyphsCoverage table lists the base glyph, and the MarkGlyphsCoverage table lists the mark glyphs.

Each mark is also listed in the MarkArray, along with its attachment point data and a mark Class value. The MarkArray defines two mark classes: Class0 consists of marks located above base glyphs, and Class1 consists of marks located below base glyphs.

The BaseArray defines attachment data for base glyphs. In this array, one BaseRecord is defined for the Tah glyph with offsets to two BaseAnchor tables, one for each class of marks. AboveBaseAnchor defines an attachment point for marks placed above the Tah base glyph, and BelowBaseAnchor defines an attachment point for marks placed below it.
 
Example 7
Hex DataSourceComments
 MarkBasePosFormat1
MarkBaseAttachSubTable
MarkBasePos subtable definition
00011PosFormat
000CMarkGlyphsCoverageoffset to MarkCoverage table
0014BaseGlyphsCoverageoffset to BaseCoverage table
00022ClassCount
001AMarkGlyphsArrayoffset to MarkArray table
0030BaseGlyphsArrayoffset to BaseArray table
 CoverageFormat1
MarkGlyphsCoverage
Coverage table definition
00011CoverageFormat
00022GlyphCount
0333fathatanMarkGlyphIDGlyphArray[0]
033FkasraMarkGlyphIDGlyphArray[1]
 CoverageFormat1
BaseGlyphsCoverage
Coverage table definition
00011CoverageFormat
00011GlyphCount
0190tahBaseGlyphIDGlyphArray[0]
 MarkArray
MarkGlyphsArray
MarkArray table definition
00022MarkCount
MarkRecord[0] in CoverageIndex order
00000Class, for marks over base
000AfathatanMarkAnchoroffset to Anchor table
MarkRecord[1]
00011Class, for marks under
0010kasraMarkAnchoroffset to Anchor table
 AnchorFormat1
fathatanMarkAnchor
Anchor table definition
00011AnchorFormat
015A346XCoordinate
FF9E-98YCoordinate
 AnchorFormat1
kasraMarkAnchor
Anchor table definition
00011AnchorFormat
0105261XCoordinate
005888YCoordinate
 BaseArray
BaseGlyphsArray
BaseArray table definition
00011BaseCount
BaseRecord[0]
0006AboveBaseAnchorBaseAnchor[0]
000CBelowBaseAnchorBaseAnchor[1]
 AnchorFormat1
AboveBaseAnchor
Anchor table definition
00011AnchorFormat
033E830XCoordinate
06401600YCoordinate
 AnchorFormat1
BelowBaseAnchor
Anchor table definition
00011AnchorFormat
033E830XCoordinate
FFAD-83Ycoordinate
  

Example 8: MarkLigPosFormat1 Subtable

Example 8 uses the MarkLigPosFormat1 subtable to attach marks to a ligature glyph in the Arabic script. The hypothetical ligature is composed of three glyph components: a Lam (initial form), a meem (medial form), and a jeem (medial form). Accent marks are defined for the first two components: the sukun accent is positioned above lam, and the kasratan accent is placed below meem.

The LigGlyphsCoverage table lists the ligature glyph and the MarkGlyphsCoverage table lists the two accent marks. Each mark is also listed in the MarkArray, along with its attachment point data and a mark Class value. The MarkArray defines two mark classes: Class0 consists of marks located above base glyphs, and Class1 consists of marks located below base glyphs.

The LigGlyphsArray has an offset to one LigatureAttach table for the covered ligature glyph. This table, called LamWithMeemWithJeemLigAttach, defines a count and array of the component glyphs in the ligature. Each ComponentRecord defines offsets to two Anchor tables, one for each mark class.

In the example, the first glyph component, lam, specifies a high attachment point for positioning accents above, but does not specify a low attachment point for placing accents below. The second glyph component, meem, defines a low attachment point for placing accents below, but not above. The third component, jeem, has no attachment points since the example defines no accents for it.
 
Example 8
Hex DataSourceComments
 MarkLigPosFormat1
MarkLigAttachSubTable
MarkLigPos subtable definition
00011PosFormat
000CMarkGlyphsCoverageoffset to MarkCoverage table
0014LigGlyphsCoverageoffset to LigatureCoverage table
00022ClassCount
001AMarkGlyphsArrayoffset to MarkArray table
0030LigGlyphsArrayoffset to LigatureArray table
 CoverageFormat1
MarkGlyphsCoverage
Coverage table definition
00011CoverageFormat
00022GlyphCount
033CsukunMarkGlyphIDGlyphArray[0]
033FkasratanMarkGlyphIDGlyphArray[1]
 CoverageFormat1
LigGlyphsCoverage
Coverage table definition
00011CoverageFormat
00011GlyphCount
0234LamWithMeemWithJeem
LigatureGlyphID
GlyphArray[0]
 MarkArray
MarkGlyphsArray
MarkArray table definition
00022MarkCount
MarkRecord[0] in CoverageIndex order
00000Class, for marks above components
000AsukunMarkAnchoroffset to Anchor table
MarkRecord[1]
00011Class, for marks below components
0010kasratanMarkAnchoroffset to Anchor table
 AnchorFormat1
sukunMarkAnchor
Anchor table definition
00011AnchorFormat
015A346XCoordinate
FF9E-98YCoordinate
 AnchorFormat1
kasratanMarkAnchor
Anchor table definition
00011AnchorFormat
0105261XCoordinate
01E8488YCoordinate
 LigatureArray
LigGlyphsArray
LigatureArray table definition
00011LigatureCount
0004LamWithMeemWithJeemLigAttachoffset to LigatureAttach table
 LigatureAttach
LamWithMeemWithJeemLigAttach
LigatureAttach table definition
00033ComponentCount
ComponentRecord[0]
Right-to-Left text order
000EAboveLamAnchoroffset to LigatureAnchor table ordered by mark class value for Class0 marks (above)
0000NULLoffset to LigatureAnchor table
no attachment points for Class1 marks
ComponentRecord[1]
0000NULLoffset to LigatureAnchor table no attachment points for Class0 marks
0014BelowMeemAnchoroffset to LigatureAnchor table for Class1 marks (below)
ComponentRecord[2]
0000NULLoffset to LigatureAnchor table no attachment points for Class0 marks
0000NULLoffset to LigatureAnchor table no attachment points for Class1 marks
 AnchorFormat1
AboveLamAnchor
Anchor table definition
00011AnchorFormat
0271625XCoordinate
07081800YCoordinate
 AnchorFormat1
BelowMeemAnchor
Anchor table definition
00011AnchorFormat
0178376XCoordinate
FE90-368Ycoordinate
  

Example 9: MarkMarkPosFormat1 Subtable

The MarkMarkPosFormat1 subtable in Example 9 defines two Arabic marks glyphs. The hanza mark, the base mark (Mark2), is identified in the Mark2GlyphsCoverage table. The damma mark, the attaching mark (Mark1), is defined in the Mark1GlyphsCoverage table.

Each Mark1 glyph is also listed in the Mark1Array, along with its attachment point data and a mark Class value. The Mark1GlyphsArray defines one mark class, Class0, that consists of marks located above Mark2 base glyphs. The Mark1GlyphsArray contains an offset to a dammaMarkAnchor table to specify the coordinate of the damma mark's attachment point.

The Mark2GlyphsArray table defines a count and an array of Mark2Records, one for each covered Mark2 base glyph. Each record contains an offset to a Mark2Anchor table for each Mark1 class. One Anchor table, AboveMark2Anchor, specifies a coordinate value for attaching the damma mark above the hanza base mark.
 
Example 9
Hex DataSourceComments
 MarkMarkPosFormat1
MarkMarkAttachSubTable
MarkBasePos subtable definition
00011PosFormat
000CMark1GlyphsCoverageoffset to Mark1Coverage table
0012Mark2GlyphsCoverageoffset to Mark2Coverage table
00011ClassCount
0018Mark1GlyphsArrayoffset to Mark1Array table
0024Mark2GlyphsArrayoffset to Mark2Array table
 CoverageFormat1
Mark1GlyphsCoverage
Coverage table definition
00011CoverageFormat
00011GlyphCount
0296dammaMarkGlyphIDGlyphArray[0]
 CoverageFormat1
Mark2GlyphsCoverage
Coverage table definition
00011CoverageFormat
00011GlyphCount
0289hanzaMarkGlyphIDGlyphArray[1]
 MarkArray
Mark1GlyphsArray
MarkArray table definition
00011MarkCount
MarkRecord[0] in CoverageIndex order
00000Class for marks above base mark
0006dammaMarkAnchoroffset to Anchor table
 AnchorFormat1
dammaMarkAnchor
Anchor table definition
00011AnchorFormat
00BD189XCoordinate
FF99-103YCoordinate
 Mark2Array
Mark2GlyphsArray
Mark2Array table definition
00011Mark2Count
Mark2Record[0]
0004AboveMark2Anchoroffset to Anchor table[0]
 AnchorFormat1
AboveMark2Anchor
Anchor table definition
00011AnchorFormat
00DD221XCoordinate
012D301Ycoordinate
  

Example 10: ContextPosFormat1 Subtable and PosLookupRecord

Example 10 uses a ContextPosFormat1 subtable to adjust the spacing between three Arabic glyphs in a word. The context is the glyph sequence (from right to left): heh (initial form), thal (final form), and heh (isolated form). In the rendered word, the first two glyphs are connected, but the last glyph (the isolated form of heh), is separate. This subtable reduces the amount of space between the last glyph and the rest of the word.

The subtable contains a WordCoverage table that lists the first glyph in the word, heh (initial), and one PosRuleSet table, called WordPosRuleSet, that defines all contexts beginning with this covered glyph.

The WordPosRuleSet contains one PosRule that describes a word context of three glyphs and identifies the second and third glyphs (the first glyph is identified by the WordPosRuleSet). When a text-processing client locates this context in text, it applies a SinglePos lookup (not shown in the example) at position 3 to reduce the spacing between the glyphs.
 
Example 10
Hex DataSourceComments
 ContextPosFormat1
MoveHehInSubtable
ContextPos subtable definition
00011PosFormat
0008WordCoverageoffset to Coverage table
00011PosRuleSetCount
000EWordPosRuleSetoffset to PosRuleSet[0] table
 
CoverageFormat1

WordCoverage
Coverage table offset
00011CoverageFormat
00011GlyphCount
02A6hehInitialGlyphIDGlyphArray[0]
 PosRuleSet
WordPosRuleSet
PosRuleSet table definition
00011PosRuleCount
0004WordPosRuleOffset to PosRule[0] table
 PosRule
WordPosRule
PosRule table definition
00033GlyphCount
00011PosCount
02DDthalFinalGlyphIDInput[1]
02C6hehIsolatedGlyphIDInput[0]
PosLookupRecord[0]
00033SequenceIndex
00011LookupListIndex
  

Example 11: ContextPosFormat2 Subtable

The ContextPosFormat2 subtable in Example 11 defines context strings for five glyph classes: Class1 consists of uppercase glyphs that overhang and create a wide open space on their right side; Class2 consists of uppercase glyphs that overhang and create a narrow space on their right side; Class3 contains lowercase x-height vowels; and Class4 contains accent glyphs placed over the lowercase vowels. The rest of the glyphs in the font fall into Class0.

The MoveAccentsSubtable defines two similar context strings. The first consists of a Class1 uppercase glyph followed by a Class3 lowercase vowel glyph with a Class4 accent glyph over the vowel. When this context is found in the text, the client lowers the accent glyph over the vowel so that it does not collide with the overhanging glyph shape. The second context consists of a Class2 uppercase glyph, followed by a Class3 lowercase vowel glyph with a Class4 accent glyph over the vowel. When this context is found in the text, the client increases the advance width of the uppercase glyph to expand the space between it and the accented vowel.

The MoveAccents subtable defines a MoveAccentsCoverage table that identifies the first glyphs in the two contexts and offsets to five PosClassSet tables, one for each class defined in the ClassDef table. Since no contexts begin with Class0, Class3, or Class4 glyphs, the offsets to the PosClassSet tables for these classes are NULL. PosClassSet[1] defines all contexts beginning with Class1 glyphs; it is called UCWideOverhangPosClass1Set. PosClassSet[2] defines all contexts beginning with Class2 glyphs, and it is called UCNarrowOverhangPosClass1Set.

Each PosClassSet defines one PosClassRule. The UCWideOverhangPosClass1Set uses the UCWideOverhangPosClassRule to specify the first context. The first class in this context string is identified by the PosClassSet that includes a PosClassRule, in this case Class1. The PosClassRule table lists the second and third classes in the context as Class3 and Class4. A SinglePos Lookup (not shown) lowers the accent glyph in position 3 in the context string.

The UCNarrowOverhangPosClass1Set defines the UCNarrowOverhangPosClassRule for the second context. This PosClassRule is identical to the UCWideOverhangPosClassRule, except that the first class in the context string is a Class2 lowercase glyph. A SinglePos Lookup (not shown) increases the advance width of the overhanging uppercase glyph in position 0 in the context string.
 
Example 11
Hex DataSourceComments
 ContextPosFormat2
MoveAccentsSubtable
ContextPos subtable definition
00022PosFormat
0012MoveAccentsCoverageOffset to Coverage table
0020MoveAccentsClassDefOffset to ClassDef
00055PosClassSetCnt
0000NULLPosClassSet[0], no contexts begin with Class0 glyphs
0060UCWideOverhangPosClass1SetPosClassSet[1] contexts beginning with Class1 glyphs
0070UCNarrowOverhangPosClass2SetPosClassSet[2] context beginning with Class2 glyphs
0000NULLPosClassSet[3], no contexts begin with Class3 glyphs
0000NULLPosClassSet[4], no contexts begin with Class4 glyphs
 CoverageFormat1
MoveAccentsCoverage
Coverage table definition
00011CoverageFormat
00055GlyphCount
0029UppercaseFGlyphIDGlyphArray[0]
0033UppercasePGlyphIDGlyphArray[1]
0037UppercaseTGlyphIDGlyphArray[2]
0039UppercaseVGlyphIDGlyphArray[3]
003AUppercaseWGlyphIDGlyphArray[4]
 ClassDefFormat2
MoveAccentsClassDef
ClassDef table definition defines five classes = 0 (all else), 1 (T, V, W: UCUnderhang), 2 (F, P: UCOverhang), 3 (a, e, I, o, u: LCVowels), 4 (tilde, umlaut)
00022ClassFormat, ranges
000A10ClassRangeCount
ClassRangeRecord[0]
0029UppercaseFGlyphIDStart
0029UppercaseFGlyphIDEnd
00022Class
ClassRangeRecord[1]
0033UppercasePGlyphIDStart
0033UppercasePGlyphIDEnd
00022Class
ClassRangeRecord[2]
0037UppercaseTGlyphIDStart
0037UppercaseTGlyphIDEnd
00011Class
ClassRangeRecord[3]
0039UppercaseVGlyphIDStart
003AUppercaseWGlyphIDEnd
00011Class
ClassRangeRecord[4]
0042LowercaseAGlyphIDStart
0042LowercaseAGlyphIDEnd
00033Class
ClassRangeRecord[5]
0046LowercaseEGlyphIDStart
0046LowercaseEGlyphIDEnd
00033Class
ClassRangeRecord[6]
004ALowercaseIGlyphIDStart
004ALowercaseIGlyphIDEnd
00033Class
ClassRangeRecord[7]
0051LowercaseOGlyphIDStart
0051LowercaseOGlyphIDEnd
00033Class
ClassRangeRecord[8]
0056LowercaseUGlyphIDStart
0056LowercaseUGlyphIDEnd
00033Class
ClassRangeRecord[9]
00F5TildeAccentGlyphIDStart
00F6UmlautAccentGlyphIDEnd
00044Class
 PosClassSet
UCWideOverhangPosClass1Set
PosClassSet table definition
00011PosClassRuleCnt
0004UCWideOverhangPosClassRulePosClassRule[0]
 PosClassRule
UCWideOverhangPosClassRule
PosClassRule table definition
00033GlyphCount
00011PosCount
00033Class[1], lowercase vowel
00044Class[2], accent
PosLookupRecord[0]
00022SequenceIndex
00011LookupListIndex, lower the accent
 PosClassSet
UCNarrowOverhangPosClass2Set
PosClassSet table definition
00011PosClassRuleCnt
0004UCNarrowOverhangPosClassRulePosClassRule[0]
 PosClassRule
UCNarrowOverhangPosClassRule
PosClassRule table definition
00033GlyphCount
00011PosCount
00033Class[1], lowercase vowel
00044Class[2], accent
PosLookupRecord[0]
00000SequenceIndex
00022LookupListIndex
increase overhang advance width
  

Example 12: ContextPosFormat3 Subtable

Example 12 uses a ContextPosFormat3 subtable to lower the position of math signs in math equations consisting of a lowercase descender or x-height glyph, a math sign glyph, and any lowercase glyph. Format3 is better to use for this context than the class-based Format2 because the sets of covered glyphs for positions 0 and 2 overlap.

The LowerMathSignsSubtable contains offsets to three Coverage tables (XhtDescLCCoverage, MathSignCoverage, and LCCoverage), one for each position in the context glyph string. When the client finds the context in the text stream, it applies the PosLookupRecord data at position 1 and repositions the math sign.
 
Example 12
Hex DataSourceComments
 ContextPosFormat3
LowerMathSignsSubtable
ContextPos subtable definition
00033PosFormat
00033GlyphCount
00011PosLookup
0010XhtDescLCCoverageOffset to Coverage[0] table
003CMathSignCoverageOffset to Coverage[1] table
0044LCCoverageOffset to Coverage[2] table
PosLookupRecord[0]
00011SequenceIndex
00011LookupListIndex
 CoverageFormat1
XhtDescLCCoverage
Coverage table definition
00011CoverageFormat
001420GlyphCount
0033LCaGlyphIDGlyphArray[0]
0035LCcGlyphIDGlyphArray[1]
0037LCeGlyphIDGlyphArray[2]
0039LCgGlyphIDGlyphArray[3]
003BLCiGlyphIDGlyphArray[4]
003CLCjGlyphIDGlyphArray[5]
003FLCmGlyphIDGlyphArray[6]
0040LCnGlyphIDGlyphArray[7]
0041LCoGlyphIDGlyphArray[8]
0042LCpGlyphIDGlyphArray[9]
0043LCqGlyphIDGlyphArray[10]
0044LCrGlyphIDGlyphArray[11]
0045LCsGlyphIDGlyphArray[12]
0046LCtGlyphIDGlyphArray[13]
0047LCuGlyphIDGlyphArray[14]
0048LCvGlyphIDGlyphArray[15]
0049LCwGlyphIDGlyphArray[16]
004ALCxGlyphIDGlyphArray[17]
004BLCyGlyphIDGlyphArray[18]
004CLCzGlyphIDGlyphArray[19]
 CoverageFormat1
MathSignCoverage
Coverage table definition
00011CoverageFormat
00022GlyphCount
011EEqualsSignGlyphIDGlyphArray[0]
012DPlusSignGlyphIDGlyphArray[1]
 CoverageFormat2
LCCoverage
Coverage table definition
00022CoverageFormat
00011RangeCount
RangeRecord[0]
0033LCaGlyphIDStart
004CLCzGlyphIDEnd
00000StartCoverageIndex
  

Example 13: PosLookupRecord

The PosLookupRecord in Example 13 identifies a lookup to apply at the second glyph position in a context glyph string.
 
Example 13
Hex DataSourceComments>/TH>
 PosLookupRecord
PosLookupRecord[0]
PosLookupRecord definition
00011SequenceIndex for second glyph position
00011LookupListIndex, apply this lookup to second glyph position
  

Example 14: ValueFormat Table and ValueRecord

Example 14 demonstrates how to specify positioning values in the GPOS table. Here, a SinglePosFormat1 subtable defines the ValueFormat and ValueRecord. The ValueFormat bit setting of 0x0099 says that the corresponding ValueRecord contains values for a glyph's XPlacement and YAdvance. Device tables specify pixel adjustments for these values at font sizes from 11 ppem to 15 ppem.
 
Example 14
Hex DataSourceComments
 SinglePosFormat1
OnesSubtable
SinglePos subtable definition
00011PosFormat
000ECovOffset to Coverage table
00990x0099ValueFormat, for XPlacement, YAdvance, XPlaDevice, YAdvaDevice Value
005080Xplacement value
00D2210Yadvance value
0018XPlaDeviceTableOffset to XPlaDevice table
0020YAdvDeviceTableOffset to YAdvDevice table
 CoverageFormat2
Cov
Coverage table definition
00022CoverageFormat
00011RangeCount
RangeRecord[0]
00C8200Start, first glyph ID in range
00D1209End, last glyph ID in range
00000StartCoverageIndex
 DeviceTableFormat1
XPlaDeviceTable
Device Table definition
000B11StartSize
000F15EndSize
00011DeltaFormat
 1increase 11ppem by 1 pixel
 1increase 12ppem by 1 pixel
 1increase 13ppem by 1 pixel
 1increase 14ppem by 1 pixel
55401increase 15ppem by 1 pixel
 DeviceTableFormat1
YAdvDeviceTable
Device Table definition
000B11StartSize
000F15EndSize
00011DeltaFormat
 1increase 11ppem by 1 pixel
 1increase 12ppem by 1 pixel
 1increase 13ppem by 1 pixel
 1increase 14ppem by 1 pixel
55401increase 15ppem by 1 pixel
  

Example 15: AnchorFormat1 Table

Example 15 illustrates an Anchor table for the damma mark glyph in the Arabic script. Format1 is used to specify X and Y coordinate values in design units.
 
Example 15
Hex DataSourceComments
 AnchorFormat1
dammaMarkAnchor
Anchor table definition
00011AnchorFormat
00BD189XCoordinate
FF99-103YCoordinate
  

Example 16: AnchorFormat2 Table

Example 16 shows an AnchorFormat2 table for an attachment point placed above a base glyph. With this format, the coordinate value for the Anchor depends on the final position of a specific contour point on the base glyph after hinting. The coordinates are specified in design units.
 
Example 16
Hex DataSourceComments
 AnchorFormat2
AboveBaseAnchor
Anchor table definition
00022AnchorFormat
0142322XCoordinate
0384900Ycoordinate
000D13AnchorPoint glyph contour point index
  

Example 17: AnchorFormat3 Table

Example 17 shows an AnchorFormat3 table that specifies an attachment point above a base glyph. Device tables modify the X and Y coordinates of the Anchor for the point size and resolution of the output font. Here, the Device tables define pixel adjustments for font sizes from 12 ppem to 17 ppem.
 
Example 17
Hex DataSourceComments
 AnchorFormat3
AboveBaseAnchor
Anchor table definition
00033AnchorFormat
0117279XCoordinate
05151301YCoordinate
000AXDeviceoffset to DeviceTable for X coordinate
0014YDeviceoffset to Device table for Y coordinate
 DeviceTableFormat2
XDevice
Device Table definition
000C12StartSize
001117EndSize
00022DeltaFormat
 1increase 12ppem by 1 pixel
 1increase 13ppem by 1 pixel
 1increase 14ppem by 1 pixel
11111increase 15ppem by 1 pixel
 2increase 16ppem by 1 pixel
22002increase 17ppem by 1 pixel
 DeviceTableFormat2
YDevice
Device Table definition
000C12StartSize
001117EndSize
00022DeltaFormat
 1increase 12ppem by 1 pixel
 1increase 13ppem by 1 pixel
 1increase 14ppem by 1 pixel
11111increase 15ppem by 1 pixel
 2increase 16ppem by 1 pixel
22002increase 17ppem by 1 pixel
  

Example 18: MarkArray Table and MarkRecord

Example 18 shows a MarkArray table with class and attachment point data for two accent marks, a grave and a cedilla. Two MarkRecords are defined, one for each covered mark glyph. The first MarkRecord assigns a mark class value of 0 to accents placed above base glyphs, such as the grave, and has an offset to a graveMarkAnchor table. The second MarkRecord assigns a mark class value of 1 for all accents positioned below base glyphs, such as the cedilla, and has an offset to a cedillaMarkAnchor table.
 
Example 18
Hex DataSourceComments
 MarkArray
MarkGlyphsArray
MarkArray table definition
00022MarkCount
MarkRecord[0] for first mark in MarkCoverage table, grave
00000Class, for marks placed above base glyphs
000AgraveMarkAnchoroffset to Anchor table
MarkRecord[1] for second mark in MarkCoverage table = cedilla
00011Class, for marks placed below base glyphs
0010cedillaMarkAnchoroffset to Anchor table