FPDFBitmap_FillRect method

void FPDFBitmap_FillRect(
  1. Pointer<fpdf_bitmap_t__> bitmap,
  2. int left,
  3. int top,
  4. int width,
  5. int height,
  6. int color,
)

Implementation

void FPDFBitmap_FillRect(
  ffi.Pointer<fpdf_bitmap_t__> bitmap,
  int left,
  int top,
  int width,
  int height,
  int color,
) {
  return _FPDFBitmap_FillRect(
    bitmap,
    left,
    top,
    width,
    height,
    color,
  );
}