FPDF_GetPageSizeByIndex method

int FPDF_GetPageSizeByIndex(
  1. Pointer<fpdf_document_t__> document,
  2. int page_index,
  3. Pointer<Double> width,
  4. Pointer<Double> height,
)

Implementation

int FPDF_GetPageSizeByIndex(
  ffi.Pointer<fpdf_document_t__> document,
  int page_index,
  ffi.Pointer<ffi.Double> width,
  ffi.Pointer<ffi.Double> height,
) {
  return _FPDF_GetPageSizeByIndex(
    document,
    page_index,
    width,
    height,
  );
}