How can I combine two PDF pages show up on the same page? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T03:04:30Zhttp://stackoverflow.com/feeds/question/535794http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/535794/how-can-i-combine-two-pdf-pages-show-up-on-the-same-page2How can I combine two PDF pages show up on the same page?bgbg2009-02-11T07:38:37Z2009-02-13T12:04:29Z
<p>Hello, </p>
<p>I am looking for a free tool that allows re-arranging pages of a PDF document and combining multiple pages per sheet. The first part (re-arranging) is easily solved by many tools (I use <a href="http://pybrary.net/pyPdf/" rel="nofollow">PyPDF</a>). </p>
<p>The problem is with the second requirement: to combine two (or more) pages into single page. For example, take two pages (A and B), rotate them, scale and combine into a single page like this</p>
<pre><code>------ ------ ------
| | | | | |
| A | | B | | a |
| | | | | |
| | | | ---> ------
| | | | | |
| | | | | b |
| | | | | |
------ ------ ------
</code></pre>
<p>The solution needs to work on Linux and preferably on Windows too. I'm looking for either console application or library with Python or Perl bindings.</p>
<p><strong>Edit</strong> there is <a href="http://pypi.python.org/pypi/pdfnup/0.3.3" rel="nofollow">pdfnup</a> library that is supposed to perform exactly this kind of transformation, and is cross-platform, however I cannot use it due to a bug similar to <a href="http://two.pairlist.net/pipermail/reportlab-users/2008-December/007819.html" rel="nofollow">this</a>.</p>
http://stackoverflow.com/questions/535794/how-can-i-combine-two-pdf-pages-show-up-on-the-same-page/535845#5358452Answer by David for How can I combine two PDF pages show up on the same page?David2009-02-11T08:07:55Z2009-02-11T08:07:55Z<p>On Linux, you can convert the PDF files to Postscript and use <code>psnup</code>. The exact way to invoke it depends on exactly how you want the pages to be put together, whether you want them rotated, what paper size(s) you want to use, etc. but it'll be something like this:</p>
<pre><code>pdf2ps infile.pdf infile.pdf
psnup -2 infile.ps outfile.ps
ps2pdf outfile.ps outfile.pdf
</code></pre>
<p>Depending on what tools you have available, you might have a more efficient way to do this - <code>psnup</code> is certainly not the only way, but it's a relatively well-known program (on Linux anyway).</p>
http://stackoverflow.com/questions/535794/how-can-i-combine-two-pdf-pages-show-up-on-the-same-page/535923#5359230Answer by Aaron Digulla for How can I combine two PDF pages show up on the same page?Aaron Digulla2009-02-11T08:35:59Z2009-02-11T08:35:59Z<p>Check the source code of PyPDF, especially the rotateClockwise() method. There must be a place where the content of a page is written. Insert a "q" operator (save state) and "cm" (with the correct parameters for a scaling matrix) before the content and a "Q" operator (restore state) afterwards.</p>
<p>See the <a href="http://www.adobe.com/devnet/pdf/" rel="nofollow">PDF documentation</a> for an explanation of operators and the structure of a page (scroll to the bottom for some useful links).</p>
<p>Don't forget to send a patch to PyPDF :)</p>
<p>[EDIT] You might also want to check the <a href="http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic/firth/software/pdfjam" rel="nofollow">pdfjam sources</a> which include a pdfnup command.</p>
http://stackoverflow.com/questions/535794/how-can-i-combine-two-pdf-pages-show-up-on-the-same-page/545648#5456481Answer by danio for How can I combine two PDF pages show up on the same page?danio2009-02-13T11:43:15Z2009-02-13T12:04:29Z<p>Check out <a href="http://stackoverflow.com/questions/465271/gluing-imposition-pdf-documents/466110#466110">this answer</a> that uses <a href="http://multivalent.sourceforge.net/index.html" rel="nofollow">Multivalent</a> to impose PDF pages</p>
http://stackoverflow.com/questions/535794/how-can-i-combine-two-pdf-pages-show-up-on-the-same-page/545680#5456800Answer by nerbles for How can I combine two PDF pages show up on the same page?nerbles2009-02-13T11:55:57Z2009-02-13T11:55:57Z<p>This is a perl function I use to grab a directory full of prn files from a 3rd party app and create a single merged pdf.</p>
<pre><code>sub runMerged($)
{
my($path) = @_;
print "Generating merged PDFs for $path\n";
my @files = sort(getFiles($path, ".prn\$"));
if (scalar(@files))
{
open(MERGE, ">$path/merged.prn");
for (my $i = 0; $i < scalar(@files); $i++)
{
print MERGE "^L\n" if ($i > 0);
open(FN, "$path/" . $files[$i]);
while (my $line = <FN>)
{
print MERGE $line;
}
close(FN);
}
chdir("$BASE_PATH/txt2pdf");
print `./txt2pdf.pl $path/merged.prn`;
}
}
</code></pre>