FPDFFont_GetFlags method

int FPDFFont_GetFlags(
  1. FPDF_FONT font
)

Experimental API. Get the descriptor flags of a font.

font - the handle to the font object.

Returns the bit flags specifying various characteristics of the font as defined in ISO 32000-1:2008, table 123, -1 on failure.

Implementation

int FPDFFont_GetFlags(FPDF_FONT font) {
  return _FPDFFont_GetFlags(font);
}