FPDFPage_GenerateContent method

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

int FPDFPage_GenerateContent(FPDF_PAGE page) {
  return _FPDFPage_GenerateContent(page);
}