FPDFBitmap_GetFormat function

  1. @Native<Int Function(FPDF_BITMAP)>(FPDF_BITMAP)>()
int FPDFBitmap_GetFormat(
  1. FPDF_BITMAP bitmap
)

Function: FPDFBitmap_GetFormat Get the format of the bitmap. Parameters: bitmap - Handle to the bitmap. Returned by FPDFBitmap_Create or FPDFImageObj_GetBitmap. Return value: The format of the bitmap. Comments: Only formats supported by FPDFBitmap_CreateEx are supported by this function; see the list of such formats above.

Implementation

@ffi.Native<ffi.Int Function(FPDF_BITMAP)>()
external int FPDFBitmap_GetFormat(FPDF_BITMAP bitmap);