marko
18th March 2012, 09:44 PM
I have a huge pdf file about my new motherboard, each range of pages is for a different language. That is pages 1-63 is english, 64-## is some other language and so on. I want to filter just those first 1-63 pages into a new pdf so I can just load that pdf for English (makes searching much faster ).
I know the Adobe Acrobat Professional can do that (filter to a new pdf by page range) but is there a free software way to do this? pdfseparate only seems to make a flood of individual pages:
pdfseparate -f 1 -l 63 motherboard.pdf newmotherboard_%d.pdf
and when I even tried that it segfaults. The man page says that it won't work on encrypted pdfs but pdfinfo says it's not an encrypted pdf. Is there some other app that works and can filter one pdf as a page range to another? thanks
Solved: I found you can load the original pdf into adobe reader, then do a print to file (check the "Print to File" checkbox near the bottom of the print dialog) with the selected page range (here 1-63). The printed file to disk is a postscript file, so you can then use
ps2pdf inputfile.ps inputfile.pdf which then converts the ps file to a pdf.
I know the Adobe Acrobat Professional can do that (filter to a new pdf by page range) but is there a free software way to do this? pdfseparate only seems to make a flood of individual pages:
pdfseparate -f 1 -l 63 motherboard.pdf newmotherboard_%d.pdf
and when I even tried that it segfaults. The man page says that it won't work on encrypted pdfs but pdfinfo says it's not an encrypted pdf. Is there some other app that works and can filter one pdf as a page range to another? thanks
Solved: I found you can load the original pdf into adobe reader, then do a print to file (check the "Print to File" checkbox near the bottom of the print dialog) with the selected page range (here 1-63). The printed file to disk is a postscript file, so you can then use
ps2pdf inputfile.ps inputfile.pdf which then converts the ps file to a pdf.