Lines Matching refs:page
47 // Page functions
52 // Construct an empty page.
56 // page_index - The index of a page.
57 // width - The page width.
58 // height - The page height.
60 // The handle to the page.
62 // Loaded page can be deleted by FPDFPage_Delete.
69 // Delete a PDF page.
73 // page_index - The index of a page.
79 // Get the page rotation. One of following values will be returned:
82 // page - Handle to a page. Returned by FPDFPage_New or
85 // The PDF page rotation.
87 // The PDF page rotation is rotated clockwise.
88 DLLEXPORT int STDCALL FPDFPage_GetRotation(FPDF_PAGE page);
91 // Set page rotation. One of following values will be set: 0(0), 1(90),
94 // page - Handle to a page. Returned by FPDFPage_New or
96 // rotate - The value of the PDF page rotation.
100 // The PDF page rotation is rotated clockwise.
102 DLLEXPORT void STDCALL FPDFPage_SetRotation(FPDF_PAGE page, int rotate);
105 // Insert an object to the page. The page object is automatically
108 // page - Handle to a page. Returned by FPDFPage_New or
110 // page_obj - Handle to a page object. Returned by
115 DLLEXPORT void STDCALL FPDFPage_InsertObject(FPDF_PAGE page,
119 // Get number of page objects inside the page.
121 // page - Handle to a page. Returned by FPDFPage_New or
124 // The number of the page object.
125 DLLEXPORT int STDCALL FPDFPage_CountObject(FPDF_PAGE page);
128 // Get page object by index.
130 // page - Handle to a page. Returned by FPDFPage_New or
132 // index - The index of a page object.
134 // The handle of the page object. Null for failed.
135 DLLEXPORT FPDF_PAGEOBJECT STDCALL FPDFPage_GetObject(FPDF_PAGE page, int index);
138 // Check that whether the content of specified PDF page contains
141 // page - Handle to a page. Returned by FPDFPage_New or
144 // TRUE means that the PDF page does contains transparency.
146 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_HasTransparency(FPDF_PAGE page);
149 // Generate PDF Page content.
151 // page - Handle to a page. Returned by FPDFPage_New or
156 // Before you save the page to a file, or reload the page, you must
159 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GenerateContent(FPDF_PAGE page);
163 // Page Object functions
168 // Check that whether the specified PDF page object contains
171 // pageObject - Handle to a page object.
173 // TRUE means that the PDF page object does contains transparency.
179 // Transform (scale, rotate, shear, move) page object.
181 // page_object - Handle to a page object. Returned by
200 // Transform (scale, rotate, shear, move) all annots in a page.
202 // page - Handle to a page.
211 DLLEXPORT void STDCALL FPDFPage_TransformAnnots(FPDF_PAGE page,
219 // The page object constants.