PdfSharp.Fonts.OpenType.GlyphDataTable.GetOffset C# (CSharp) Method

GetOffset() public method

Gets the offset of the specified glyph relative to the first byte of the font image.
public GetOffset ( int glyph ) : int
glyph int
return int
    public int GetOffset(int glyph)
    {
      return DirectoryEntry.Offset + this.fontData.loca.locaTable[glyph];
    }