In This Topic
Creates a subset of the CFF font table containing the specified glyphs, then serializes the subset to a byte array.
Syntax
'Declaration
Public Function CffGlyphsToArray( _
ByVal As Font, _
ByVal As System.Collections.Generic.HashSet(Of UShort) _
) As System.Byte()
public System.byte[] CffGlyphsToArray(
Font ,
System.Collections.Generic.HashSet<ushort>
)
Parameters
- font
- The Font object with PostScript outlines stored in the CFF format.
- glyphIDs
- Glyph indices to be added to the resulting table subset.
Return Value
Binary data with the resulting CFF font table.
See Also