The idea is from this answer on stackoverflow. But as you are a Windows user, I doubt that shell scripts will work for you. So I've implemented a Python version that should also work on Windows.
Preparation
- Install Python and make sure you have the
pyPDF package. - Create a PDF file with a single blank in
/path/to/blank.pdf (I've created blank pdf pages here). - Save this as
uniprint.py in any directory of your $PATH. (I'm not a Windows user. This is straight forward under Linux. Please let me know if you get errors / if it works.) - Make
uniprint.py executable
Every time you need it
Run uniprint.py a directory that contains only PDF files you want to merge.
Python
#!/usr/bin/env python # -*- coding: utf-8 -*- from argparse import ArgumentParser from glob import glob from pyPdf import PdfFileReader, PdfFileWriter def merge(path, blank_filename, output_filename): blank = PdfFileReader(file(blank_filename, "rb")) output = PdfFileWriter() for pdffile in glob('*.pdf'): if pdffile == output_filename: continue print("Parse '%s'" % pdffile) document = PdfFileReader(open(pdffile, 'rb')) for i in range(document.getNumPages()): output.addPage(document.getPage(i)) if document.getNumPages() % 2 == 1: output.addPage(blank.getPage(0)) print("Add blank page to '%s' (had %i pages)" % (pdffile, document.getNumPages())) print("Start writing '%s'" % output_filename) output_stream = file(output_filename, "wb") output.write(output_stream) output_stream.close() if __name__ == "__main__": parser = ArgumentParser() # Add more options if you like parser.add_argument("-o", "--output", dest="output_filename", default="merged.pdf", help="write merged PDF to FILE", metavar="FILE") parser.add_argument("-b", "--blank", dest="blank_filename", default="blank.pdf", help="path to blank PDF file", metavar="FILE") parser.add_argument("-p", "--path", dest="path", default=".", help="path of source PDF files") args = parser.parse_args() merge(args.path, args.blank_filename, args.output_filename)
Testing
Please make a comment if this works on Windows and Mac.
Please always leave a comment if it doesn't work / it could be improved.
It works on Linux. Joining 3 PDFs to a single 200-page PDF took less then a second.