Some test text!

Search
Hamburger Icon

Cpp / Guides / Remove pages

Removing pages from PDFs in C++

To remove pages from a PDF document.

PDFDoc doc(filename);

// Remove the fifth page from the page sequence.
doc.PageRemove(doc.GetPageIterator(5));

// Remove the third page.
PageIterator i = doc.GetPageIterator();
i.Next();
i.Next();
doc.PageRemove(i);

Merge, copy, delete, and rearrange PDF pages
Full code sample which illustrates how to copy pages from one document to another, how to delete, and rearrange pages and how to use ImportPages().

About removing/deleting pages

PDFDoc.PageRemove(itr) only removes the page from document's page sequence. The page and its resources are still available until the document is saved in 'full save mode' with the 'remove unused objects' flag. If you are saving the file in 'incremental mode', the serialized document may contain the content of the removed page.

Get the answers you need: Chat with us