FPDFFont_GetIsEmbedded function

  1. @Native<Int Function(FPDF_FONT)>(FPDF_FONT)>()
int FPDFFont_GetIsEmbedded(
  1. FPDF_FONT font
)

Experimental API. Get whether |font| is embedded or not.

font - the handle to the font object.

Returns 1 if the font is embedded, 0 if it not, and -1 on failure.

Implementation

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