Picking pages from PDF document

How can you pick pages from a PDF file?

Pseudo-code synopsis

 pick-pages 1,2-69,70-73,100 example.pdf > put_to_new_file.pdf

Upvotes: 1

Views: 230

Answers (6)

Chris Dolan
Chris Dolan

Reputation: 8963

As part of my CAM::PDF Perl library on CPAN, I bundle a command-line utility deletepdfpage.pl that does the inverse of what you are asking for, with almost the exact same syntax:

deletepdfpage.pl original.pdf 74-99,101- target.pdf

Upvotes: 0

user172818
user172818

Reputation: 4754

Probably this is not a popular method, but this is one way. You can use pdflatex. For example, you can write a tex like:

\documentclass{book}\usepackage{pdfpages}\begin{document}
\includepdf[pages={1,2-10,11}]{pdf.pdf}\end{document}

You can write a small script to automize this.

Upvotes: 0

David Andres
David Andres

Reputation: 31781

This is how I've done it with regular expressions. I counted the number of matches for the following regular expressions:

/Type\s*/Page[^s]

Case insensitive, by the way.

Upvotes: 1

Martin Beckett
Martin Beckett

Reputation: 96139

ghostscript, somethign like

gs -q -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -dFirstPage=3 -dLastPage=3 -sOutputFile=fileout.pdf filein.pdf

Upvotes: 2

Peter
Peter

Reputation: 132307

You're after pdftk.

Upvotes: 0

Thomas Geritzma
Thomas Geritzma

Reputation: 6687

My best suggestion would be to try something with PDF toolkit - with Split and Merge, and a simple .bat file construction, something like that shouldn't be much hard.

Upvotes: 4

Related Questions