Is it possible to delete some pages of a pdf document?

26

6

How do I remove some pages of a .pdf file? I tried some tips mentioned in different websites, but to no avail.

Gigili

Posted 2012-12-11T19:07:05.310

Reputation: 605

2It would be helpful to mention what "tips" exactly you've tried so you don't get the same suggestions over again. – slhck – 2012-12-11T19:32:53.783

Answers

9

I've used PDF SAM (Split And Merge) ( http://www.pdfsam.org/ ) numerous times and it works well.

It's a free Java app, so you will need Java installed. It allows PDFs to be extracted to single pages and then reattached back again.

Lee Taylor

Posted 2012-12-11T19:07:05.310

Reputation: 1 259

This works fine, I just wish they would add something like Adobe Acrobats "organize pages" were one could easily remove, add, rotate or reorder pages. – Foad – 2019-01-08T09:32:01.877

5

You can use command line tools pdftk and qpdf for this purpose. They are available on Windows and linux.

Use scoop to install them easily on Windows:

scoop install pdftk
scoop install qpdf

Here is the example of the code to keep only pages 1-9 and 26-end of the original file input.pdf and save them to outputfile.pdf.:

pdftk example: (taken from here)

pdftk input.pdf cat 1-9 26-end output outputfile.pdf

qpdf example:

qpdf input.pdf --pages input.pdf 1-9,26-z -- outputfile.pdf 

Atilla Ozgur

Posted 2012-12-11T19:07:05.310

Reputation: 391

1

there is also a Chooloatey package for pdftk and qpdf

– Foad – 2019-01-08T09:35:02.937

5

You can use any PDF editor, or if you don't want to download/install anything big, use the command-line portable pdftk (PDF Toolkit). Just extract the EXE and DLL to the same directory as your PDF, then from the command prompt use a command similar to the following:

pdftk in.pdf cat 1-12 14-end output out.pdf

This will delete page 13 from the PDF. See the man(ual) and examples pages for more help/options, or just type pdftk --help.

Karan

Posted 2012-12-11T19:07:05.310

Reputation: 51 857

You can search for PDFTK portable version for a GUI version without installatoin. – Kenneth L – 2016-01-03T14:32:54.410

I wish there were a command to remove certain pages. that would be way more easier IMO. – Foad – 2019-01-08T09:32:50.483

5

Sejda is a new "Advanced Online Manipulation Tool" that has the ability to split a PDF document at the page number that you wish. It also has numerous other abilities:

https://www.sejda.com/extract-pdf-pages

To remove pages, use the Extract task. Select all page but the ones you wish removed, and click "Extract".

You can select multiple pages at once pressing SHIFT

Extract PDF pages using sejda.com

Simon

Posted 2012-12-11T19:07:05.310

Reputation: 4 193

3

Another option is to use a PDF printer (e.g. CutePDF ( http://www.cutepdf.com/ ) )

"Print" your PDF to another PDF making sure to choose only the pages you want from the print dialog.

Lee Taylor

Posted 2012-12-11T19:07:05.310

Reputation: 1 259

Many OS have a PDF printer installed by default. – adam.r – 2018-09-22T21:19:18.667

1

Another commercial option is using Ricoh's Print&Share:

There are several ways to "remove" pages. Easiest option:

  1. Print your pdf document or other document to Print&Share
  2. Go to the Print&Share pages overview by clicking that icon in the upper right corner: Ricoh Print&Share pages overview
  3. Deselect the pages that you don't want: Ricoh Print&Share deselect pages
  4. Click the Send and Close button. Ricoh Print&Share Send and Close

Now it is also possible to deselect pages based on conditions and automatically instead of doing it manually. This can be for example if the page contains too much color or too much white space or if it contains certain words, or specific page ranges, etc... The page selection options can be found here: Ricoh Print&Share advanced page selection

juFo

Posted 2012-12-11T19:07:05.310

Reputation: 318

0

Pdf printer drivers, as in Foxit, will convert your original pdf file, but may result in a different quality, or much larger file, when using high quality print.

Alternatively, it is recommended to simply cut off pages, from the original pdf file, without converting it.

This online tool does it very well: http://smallpdf.com/split-pdf

 1. Upload your file with drag and drop or press Choose file.
 2. Select the pages you want to save into a new file.
 3. Press the Split PDF button and download your file.

Noam Manos

Posted 2012-12-11T19:07:05.310

Reputation: 771

1

While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - From Review

– nKn – 2016-01-03T11:42:53.017

Sure, I've added detailed explanation. – Noam Manos – 2016-01-04T20:51:51.300

0

The free foxit reader comes with a pdf printer that allows you to print (ranges of) pages to a pdf file. And it's a great alternative to Adobe Reader.

Catweazle

Posted 2012-12-11T19:07:05.310

Reputation: 376