Lines Matching refs:page

17 *  Set "MediaBox" entry to the page dictionary.						   

18 * @param[in] page - Handle to a page.
25 DLLEXPORT void STDCALL FPDFPage_SetMediaBox(FPDF_PAGE page, float left, float bottom, float right, float top);
28 * Set "CropBox" entry to the page dictionary.
29 * @param[in] page - Handle to a page.
36 DLLEXPORT void STDCALL FPDFPage_SetCropBox(FPDF_PAGE page, float left, float bottom, float right, float top);
39 /** Get "MediaBox" entry from the page dictionary.
40 * @param[in] page - Handle to a page.
47 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetMediaBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
49 /** Get "CropBox" entry from the page dictionary.
50 * @param[in] page - Handle to a page.
57 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_GetCropBox(FPDF_PAGE page, float* left, float* bottom, float* right, float* top);
60 * Transform the whole page with a specified matrix, then clip the page content region.
62 * @param[in] page - A page handle.
64 * @param[in] clipRect - A rectangle page area to be clipped.
65 * @Note. This function will transform the whole page, and would take effect to all the objects in the page.
67 DLLEXPORT FPDF_BOOL STDCALL FPDFPage_TransFormWithClip(FPDF_PAGE page, FS_MATRIX* matrix, FS_RECTF* clipRect);
70 * Transform (scale, rotate, shear, move) the clip path of page object.
71 * @param[in] page_object - Handle to a page object. Returned by FPDFPageObj_NewImageObj.
103 * Clip the page content, the page content that outside the clipping region become invisible.
105 * @param[in] page - A page handle.
107 * @Note. A clip path will be inserted before the page content stream or content array. In this way, the page content will be clipped
110 DLLEXPORT void STDCALL FPDFPage_InsertClipPath(FPDF_PAGE page,FPDF_CLIPPATH clipPath);