Difference between revisions of "Pdfunite"

From Parallel Library Services
Jump to navigation Jump to search
 
Line 1: Line 1:
Manual: https://manpages.debian.org/testing/poppler-utils/pdfunite.1.en.html
<code>pdfunite</code> is a Portable Document Format (PDF) page merger. <code>pdfunite</code> merges several PDF (Portable Document Format) files in order of their occurrence on command line to one PDF result file.
<code>pdfunite</code> is a Portable Document Format (PDF) page merger. <code>pdfunite</code> merges several PDF (Portable Document Format) files in order of their occurrence on command line to one PDF result file.


It is part of the Poppler software package of PDF tools. To run it, first install [[Poppler]].  
It is part of the Poppler software package of PDF tools. To run it, first install [[Poppler]].  
== Syntax ==
Invoking <code>pdfunite</code> is as simple as:
<syntaxhighlight lang="bash">
pdfunite [options] PDF-sourcefile1 PDF-sourcefile-n PDF-destfile
</syntaxhighlight>
NB: Neither of the <code>PDF-sourcefile1</code> to <code>PDF-sourcefile-n</code> should be encrypted.
== Options ==
<code>-v</code>  Print copyright and version information <br>
<code>-h</code>  Print usage information. (-help and --help are equivalent.)
For example:
<syntaxhighlight lang="bash">
pdfunite sample1.pdf sample2.pdf sample.pdf
</syntaxhighlight>
merges all pages from <code>sample1.pdf</code> and <code>sample2.pdf</code> (in that order) and creates <code>sample.pdf</code>
AUTHOR
The <code>pdfunite</code> software and documentation are copyright 1996-2004 Glyph & Cog, LLC and copyright 2005-2011 The Poppler Developers - http://poppler.freedesktop.org
SEE ALSO
pdfdetach(1), pdffonts(1), [[pdfimages]], [[pdfinfo]], pdftocairo(1),


[[Category:Tools]]
[[Category:Tools]]

Latest revision as of 12:05, 8 December 2021

Manual: https://manpages.debian.org/testing/poppler-utils/pdfunite.1.en.html

pdfunite is a Portable Document Format (PDF) page merger. pdfunite merges several PDF (Portable Document Format) files in order of their occurrence on command line to one PDF result file.

It is part of the Poppler software package of PDF tools. To run it, first install Poppler.