FPDFFont_GetGlyphPath method

FPDF_GLYPHPATH FPDFFont_GetGlyphPath(
  1. FPDF_FONT font,
  2. int glyph,
  3. double font_size
)

Experimental API. Get the glyphpath describing how to draw a font glyph.

font - the handle to the font object. glyph - the glyph being drawn. font_size - the size of the font.

Returns the handle to the segment, or NULL on faiure.

Implementation

FPDF_GLYPHPATH FPDFFont_GetGlyphPath(
  FPDF_FONT font,
  int glyph,
  double font_size,
) {
  return _FPDFFont_GetGlyphPath(font, glyph, font_size);
}