diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/fpdfview.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/public/fpdfview.h b/public/fpdfview.h index 0898ec6770..ffa4678347 100644 --- a/public/fpdfview.h +++ b/public/fpdfview.h @@ -554,6 +554,19 @@ FPDF_EXPORT double FPDF_CALLCONV FPDF_GetPageWidth(FPDF_PAGE page); // One point is 1/72 inch (around 0.3528 mm) FPDF_EXPORT double FPDF_CALLCONV FPDF_GetPageHeight(FPDF_PAGE page); +// Experimental API. +// Function: FPDF_GetPageBoundingBox +// Get the bounding box of the page. This is the intersection between +// its media box and its crop box. +// Parameters: +// page - Handle to the page. Returned by FPDF_LoadPage. +// rect - Pointer to a rect to receive the page bounding box. +// On an error, |rect| won't be filled. +// Return value: +// True for success. +FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDF_GetPageBoundingBox(FPDF_PAGE page, + FS_RECTF* rect); + // Function: FPDF_GetPageSizeByIndex // Get the size of the page at the given index. // Parameters: |