FPDFBitmap_GetWidth function

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

Function: FPDFBitmap_GetWidth Get width of a bitmap. Parameters: bitmap - Handle to the bitmap. Returned by FPDFBitmap_Create or FPDFImageObj_GetBitmap. Return value: The width of the bitmap in pixels.

Implementation

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