Printing out designs side by side
2012-01-04 by clausundercover
Hi, Maybe this will be useful to someone. I spent some time trying to arrange 4 print outs side by side on an A4 paper for photo printing 2-sided boards (2 prints on each side). I wanted to avoid rasterizing the PDFs. 1. Print out the two layers on A6 portrait format on CutePDF printer - file design1.pdf. Kicad I'm using puts them on separate pages. 2. Print out the two layers in mirror on A6 portrait format - file design2.pdf. 3. install ghostscript (http://www.ghostscript.com/download/gsdnld.html) and psutils (http://gnuwin32.sourceforge.net/packages/psutils.htm) 4. cd <whereyouputthefiles> 5. Run the following in sequence (use gswin32 or gswin64 depending on which you installed): gswin64 -sDEVICE=pswrite -sPAPERSIZE=a6 -o step1.ps design1.pdf design2.pdf psnup -4 -pa6 -s0.5 step1.ps step2.ps gswin64 -sDEVICE=pdfwrite -sPAPERSIZE=a6 -o step3.pdf step2.ps gswin64 -sDEVICE=pdfwrite -sPAPERSIZE=a4 -dPDFFitPage -o final.pdf step3.pdf Probably there are other methods out there but I've been unable to find a program that takes 4 pdfs and panelizes them on one page.