split pdf file into two

Dale Dellutri daledellutri at gmail.com
Thu Feb 16 20:23:46 UTC 2012


On Thu, Feb 16, 2012 at 2:01 PM, Ranjan Maitra <maitra at iastate.edu> wrote:
> So i have a 12 page pdf. I want to split it into pages 1-7 say and
> 8-12.

Open with gsview, then File -> Convert, make sure the device
is pdfwrite, then click on the pages you want for each half.

Or use gs (ghostscript command line), something like
  gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=<filename1>.pdf \
    -dFirstPage=1 -dLastPage=7 <inputfile>.pdf
and something similar for pages 8 - 12.

See:
  http://ghostscript.com/doc/current/Use.htm#PDF

-- 
Dale Dellutri


More information about the users mailing list