diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-01-16 16:39:05 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-16 16:39:05 +0000 |
commit | 2615590b040a2d49413be41cad298e242d1072e8 (patch) | |
tree | e4c084d34019b6fd576005ca6f3d352a25b04961 /fpdfsdk/fpdfview.cpp | |
parent | 2056fac754e679baea695390854fe7b0ce7acb28 (diff) | |
download | pdfium-2615590b040a2d49413be41cad298e242d1072e8.tar.xz |
Add FPDF_GetPageBoundingBox API.chromium/3323
This API returns the intersection of the media box and the crop box
of a page.
Bug: pdfium:973
Change-Id: I57a19ee526ea6d4cd621e1ad6019e51f69f92308
Reviewed-on: https://pdfium-review.googlesource.com/22810
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdfview.cpp')
-rw-r--r-- | fpdfsdk/fpdfview.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fpdfsdk/fpdfview.cpp b/fpdfsdk/fpdfview.cpp index aad29462cc..cec44a48f9 100644 --- a/fpdfsdk/fpdfview.cpp +++ b/fpdfsdk/fpdfview.cpp @@ -726,6 +726,19 @@ FPDF_EXPORT double FPDF_CALLCONV FPDF_GetPageHeight(FPDF_PAGE page) { return pPage ? pPage->GetPageHeight() : 0.0; } +FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV FPDF_GetPageBoundingBox(FPDF_PAGE page, + FS_RECTF* rect) { + if (!rect) + return false; + + CPDF_Page* pPage = CPDFPageFromFPDFPage(page); + if (!pPage) + return false; + + FSRECTFFromCFXFloatRect(pPage->GetPageBBox(), rect); + return true; +} + #if defined(_WIN32) namespace { |