FPDFFont_GetGlyphPath method
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);
}