FPDFBitmap_GetHeight method

int FPDFBitmap_GetHeight(
  1. FPDF_BITMAP bitmap
)

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

Implementation

int FPDFBitmap_GetHeight(FPDF_BITMAP bitmap) {
  return _FPDFBitmap_GetHeight(bitmap);
}