diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-03-15 15:25:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-15 15:25:16 +0000 |
commit | 35841fa4e3dbf8f9146f78def048c4a287894a8a (patch) | |
tree | 2252389ad952f6bdb0c9a55b6441f3b195e38ff3 /public | |
parent | d14dd4316d04f0982c340ad25bb283198a4d5c32 (diff) | |
download | pdfium-35841fa4e3dbf8f9146f78def048c4a287894a8a.tar.xz |
Create FPDFPage_RemoveObject().
This call removes a page object from a page. We currently offer an
API to insert these objects, but not to remove.
Bug: pdfium:1037
Change-Id: I35ff596f9e7c87a39051f0cb1de40a5bec40fee5
Reviewed-on: https://pdfium-review.googlesource.com/28492
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'public')
-rw-r--r-- | public/fpdf_edit.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/public/fpdf_edit.h b/public/fpdf_edit.h index 54735a3bde..1e84e8f7ff 100644 --- a/public/fpdf_edit.h +++ b/public/fpdf_edit.h @@ -148,6 +148,19 @@ FPDF_EXPORT void FPDF_CALLCONV FPDFPage_SetRotation(FPDF_PAGE page, int rotate); FPDF_EXPORT void FPDF_CALLCONV FPDFPage_InsertObject(FPDF_PAGE page, FPDF_PAGEOBJECT page_obj); +// Experimental API. +// Remove |page_obj| from |page|. +// +// page - handle to a page +// page_obj - handle to a page object to be removed. +// +// Returns TRUE on success. +// +// Ownership is transferred to the caller. Call FPDFPageObj_Destroy() to free +// it. +FPDF_EXPORT FPDF_BOOL FPDF_CALLCONV +FPDFPage_RemoveObject(FPDF_PAGE page, FPDF_PAGEOBJECT page_obj); + // Get number of page objects inside |page|. // // page - handle to a page. |