DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Extract A Range Of Pages From A PDF
// Use `gs' to create a new PDF document containing only a page range from another document
$ gs -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -dSAFER \
-dFirstPage=N -dLastPage=M \
-sOutputFile=document-N-M.pdf \
document.pdf





