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_c_api_test.c | |
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_c_api_test.c')
-rw-r--r-- | fpdfsdk/fpdfview_c_api_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdfsdk/fpdfview_c_api_test.c b/fpdfsdk/fpdfview_c_api_test.c index ad1d8a70ce..53d8776be0 100644 --- a/fpdfsdk/fpdfview_c_api_test.c +++ b/fpdfsdk/fpdfview_c_api_test.c @@ -332,6 +332,7 @@ int CheckPDFiumCApi() { CHK(FPDF_LoadPage); CHK(FPDF_GetPageWidth); CHK(FPDF_GetPageHeight); + CHK(FPDF_GetPageBoundingBox); CHK(FPDF_GetPageSizeByIndex); #ifdef _WIN32 CHK(FPDF_RenderPage); |