FPDFPage_GenerateContent function

  1. @Native<Int Function(FPDF_PAGE)>(FPDF_PAGE)>()
int FPDFPage_GenerateContent(
  1. FPDF_PAGE page
)

Generate the content of |page|.

page - handle to a page.

Returns TRUE on success.

Before you save the page to a file, or reload the page, you must call |FPDFPage_GenerateContent| or any changes to |page| will be lost.

Implementation

@ffi.Native<FPDF_BOOL Function(FPDF_PAGE)>()
external int FPDFPage_GenerateContent(FPDF_PAGE page);