Home | History | Annotate | Download | only in include

Lines Matching refs:page

41 // Page functions

46 // Construct an empty page.
49 // page_index - The index of a page.
50 // width - The page width.
51 // height - The page height.
53 // The handle to the page.
55 // Loaded page can be deleted by FPDFPage_Delete.
59 // Delete a PDF page.
62 // page_index - The index of a page.
68 // Get the page rotation. One of following values will be returned: 0(0), 1(90), 2(180), 3(270).
70 // page - Handle to a page. Returned by FPDFPage_New.
72 // The PDF page rotation.
74 // The PDF page rotation is rotated clockwise.
75 DLLEXPORT int STDCALL FPDFPage_GetRotation(FPDF_PAGE page);
78 // Insert an object to the page. The page object is automatically freed.
80 // page - Handle to a page. Returned by FPDFPage_New.
81 // page_obj - Handle to a page object. Returned by FPDFPageObj_NewTextObj,FPDFPageObj_NewTextObjEx and
85 DLLEXPORT void STDCALL FPDFPage_InsertObject(FPDF_PAGE page, FPDF_PAGEOBJECT page_obj);
88 // Get number of page objects inside the page.
90 // page - Handle to a page. Returned by FPDFPage_New.
92 // The number of the page object.
93 DLLEXPORT int STDCALL FPDFPage_CountObject(FPDF_PAGE page);
96 // Get page object by index.
98 // page - Handle to a page. Returned by FPDFPage_New.
99 // index - The index of a page object.
101 // The handle of the page object. Null for failed.
102 DLLEXPORT FPDF_PAGEOBJECT STDCALL FPDFPage_GetObject(FPDF_PAGE page, int index);
105 // Check that whether the content of specified PDF page contains transparency.
107 // page - Handle to a page. Returned by FPDFPage_New or FPDF_LoadPage.
109 // TRUE means that the PDF page does contains transparency.
111 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_HasTransparency(FPDF_PAGE page);
114 // Generate PDF Page content.
116 // page - Handle to a page. Returned by FPDFPage_New.
120 // Before you save the page to a file, or reload the page, you must call the FPDFPage_GenerateContent function.
122 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GenerateContent(FPDF_PAGE page);
126 // Page Object functions
131 // Check that whether the specified PDF page object contains transparency.
133 // pageObject - Handle to a page object.
135 // TRUE means that the PDF page object does contains transparency.
140 // Transform (scale, rotate, shear, move) page object.
142 // page_object - Handle to a page object. Returned by FPDFPageObj_NewImageObj.
155 // Transform (scale, rotate, shear, move) all annots in a page.
157 // page - Handle to a page.
166 DLLEXPORT void STDCALL FPDFPage_TransformAnnots(FPDF_PAGE page,
169 // The page object constants.