• Home
  • Raw
  • Download

Lines Matching full:page

18  * Set "MediaBox" entry to the page dictionary.
20 * page - Handle to a page.
26 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetMediaBox(FPDF_PAGE page,
33 * Set "CropBox" entry to the page dictionary.
35 * page - Handle to a page.
41 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetCropBox(FPDF_PAGE page,
48 * Set "BleedBox" entry to the page dictionary.
50 * page - Handle to a page.
56 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetBleedBox(FPDF_PAGE page,
63 * Set "TrimBox" entry to the page dictionary.
65 * page - Handle to a page.
71 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetTrimBox(FPDF_PAGE page,
78 * Set "ArtBox" entry to the page dictionary.
80 * page - Handle to a page.
86 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetArtBox(FPDF_PAGE page,
93 * Get "MediaBox" entry from the page dictionary.
95 * page - Handle to a page.
104 FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFPage_GetMediaBox(FPDF_PAGE page,
111 * Get "CropBox" entry from the page dictionary.
113 * page - Handle to a page.
122 FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFPage_GetCropBox(FPDF_PAGE page,
129 * Get "BleedBox" entry from the page dictionary.
131 * page - Handle to a page.
140 FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFPage_GetBleedBox(FPDF_PAGE page,
147 * Get "TrimBox" entry from the page dictionary.
149 * page - Handle to a page.
158 FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFPage_GetTrimBox(FPDF_PAGE page,
165 * Get "ArtBox" entry from the page dictionary.
167 * page - Handle to a page.
176 FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDFPage_GetArtBox(FPDF_PAGE page,
183 * Apply transforms to |page|.
185 * If |matrix| is provided it will be applied to transform the page.
186 * If |clipRect| is provided it will be used to clip the resulting page.
190 * This function will transform the whole page, and would take effect to all the
191 * objects in the page.
193 * page - Page handle.
198 FPDFPage_TransFormWithClip(FPDF_PAGE page,
203 * Transform (scale, rotate, shear, move) the clip path of page object.
204 * page_object - Handle to a page object. Returned by
224 // Get the clip path of the page object.
226 // page object - Handle to a page object. Returned by e.g.
231 // FPDF_ClosePage() is called for the page containing |page_object|.
262 // until FPDF_ClosePage() is called for the page containing |clip_path|.
292 * Clip the page content, the page content that outside the clipping region
295 * A clip path will be inserted before the page content stream or content array.
296 * In this way, the page content will be clipped by this clip path.
298 * page - A page handle.
301 FPDF_EXPORT void FPDF_CALLCONV FPDFPage_InsertClipPath(FPDF_PAGE page,