FPDFFont_GetFlags function

  1. @Native<Int Function(FPDF_FONT)>(FPDF_FONT)>()
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

@ffi.Native<ffi.Int Function(FPDF_FONT)>()
external int FPDFFont_GetFlags(FPDF_FONT font);