FPDFGlyphPath_GetGlyphPathSegment method

FPDF_PATHSEGMENT FPDFGlyphPath_GetGlyphPathSegment(
  1. FPDF_GLYPHPATH glyphpath,
  2. int index
)

Experimental API. Get segment in glyphpath at index.

glyphpath - handle to a glyph path. index - the index of a segment.

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

Implementation

FPDF_PATHSEGMENT FPDFGlyphPath_GetGlyphPathSegment(
  FPDF_GLYPHPATH glyphpath,
  int index,
) {
  return _FPDFGlyphPath_GetGlyphPathSegment(glyphpath, index);
}