FPDFBitmap_Create method

Pointer<fpdf_bitmap_t__> FPDFBitmap_Create(
  1. int width,
  2. int height,
  3. int alpha
)

Implementation

ffi.Pointer<fpdf_bitmap_t__> FPDFBitmap_Create(
  int width,
  int height,
  int alpha,
) {
  return _FPDFBitmap_Create(
    width,
    height,
    alpha,
  );
}