PdfSharp.Fonts.OpenType.GlyphDataTable.GetGlyphSize C# (CSharp) 메소드

GetGlyphSize() 공개 메소드

Gets the size of the byte array that defines the glyph.
public GetGlyphSize ( int glyph ) : int
glyph int
리턴 int
    public int GetGlyphSize(int glyph)
    {
      IndexToLocationTable loca = this.fontData.loca;
      return GetOffset(glyph + 1) - GetOffset(glyph);
    }