<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://docs.mappingsuite.com/w/index.php?action=history&amp;feed=atom&amp;title=PDF_Concat</id>
	<title>PDF Concat - Historique des versions</title>
	<link rel="self" type="application/atom+xml" href="https://docs.mappingsuite.com/w/index.php?action=history&amp;feed=atom&amp;title=PDF_Concat"/>
	<link rel="alternate" type="text/html" href="https://docs.mappingsuite.com/w/index.php?title=PDF_Concat&amp;action=history"/>
	<updated>2026-04-06T22:44:23Z</updated>
	<subtitle>Historique des versions pour cette page sur le wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>https://docs.mappingsuite.com/w/index.php?title=PDF_Concat&amp;diff=3423&amp;oldid=prev</id>
		<title>imported&gt;Admin : 1 révision importée</title>
		<link rel="alternate" type="text/html" href="https://docs.mappingsuite.com/w/index.php?title=PDF_Concat&amp;diff=3423&amp;oldid=prev"/>
		<updated>2019-03-06T09:12:03Z</updated>

		<summary type="html">&lt;p&gt;1 révision importée&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;fr&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← Version précédente&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;Version du 6 mars 2019 à 09:12&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;fr&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(Aucune différence)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>imported&gt;Admin</name></author>
		
	</entry>
	<entry>
		<id>https://docs.mappingsuite.com/w/index.php?title=PDF_Concat&amp;diff=3422&amp;oldid=prev</id>
		<title>imported&gt;Bsteeland : Created page with &quot;==Description== PDF_CONCAT allow splits and combinations of one or more PDF files. ==Usage== ===Parameters=== a.–infiles : This parameter define the path of one or more inpu...&quot;</title>
		<link rel="alternate" type="text/html" href="https://docs.mappingsuite.com/w/index.php?title=PDF_Concat&amp;diff=3422&amp;oldid=prev"/>
		<updated>2018-08-27T11:08:47Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Description== PDF_CONCAT allow splits and combinations of one or more PDF files. ==Usage== ===Parameters=== a.–infiles : This parameter define the path of one or more inpu...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nouvelle page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Description==&lt;br /&gt;
PDF_CONCAT allow splits and combinations of one or more PDF files.&lt;br /&gt;
==Usage==&lt;br /&gt;
===Parameters===&lt;br /&gt;
a.–infiles :&lt;br /&gt;
This parameter define the path of one or more input files. This parameter is mandatory. Each file path should be separated by ‘;’.&lt;br /&gt;
b.–outfile :&lt;br /&gt;
This parameter define the path of the output file. This parameter is mandatory.&lt;br /&gt;
c.–pages :&lt;br /&gt;
This parameter define how the documents pages will been processed. This parameter is optional.&lt;br /&gt;
===‘-pages’ parameter details===&lt;br /&gt;
====The not specified case.====&lt;br /&gt;
When the parameter ‘-pages’ is not specified, input PDF files will been combined, one after the other, on the output file.&lt;br /&gt;
 &lt;br /&gt;
=====Page by page combination case.=====&lt;br /&gt;
To combine documents pages, a pages description parameter should be specified. This description will contain page numbers and page orders. This description will use several separator.&lt;br /&gt;
These separators are: &lt;br /&gt;
&lt;br /&gt;
*‘;’ : Divide each document pages block. It’s not mandatory to have a block for each input document but the block order should respect the document order of the input parameter. Each block describe the page numbers to be used.&lt;br /&gt;
*‘,’ : Divide the page numbers on each block. Page numbering start at 1.&lt;br /&gt;
*‘-‘ : Allow page ranges definition instead of page number definition.&lt;br /&gt;
&lt;br /&gt;
b.1.Examples&lt;br /&gt;
&lt;br /&gt;
Example 1 : documents mix&lt;br /&gt;
Command :&lt;br /&gt;
pdf_concat –infiles:c:\pdf1.pdf ;c:\pdf2.pdf –pages :1,2,3 ;4,5,6 –outfile:c:\out.pdf&lt;br /&gt;
This command will create a PDF file with 6 pages. &lt;br /&gt;
The output document will contain: &lt;br /&gt;
1.The Document pdf1.pdf page 1.&lt;br /&gt;
2.The Document pdf2.pdf page 4.&lt;br /&gt;
3.The Document pdf1.pdf page 2.&lt;br /&gt;
4.The Document pdf2.pdf page 5.&lt;br /&gt;
5.The Document pdf1.pdf page 3.&lt;br /&gt;
6.The Document pdf2.pdf page 6.&lt;br /&gt;
&lt;br /&gt;
Exemple 2 : Retrieving a page range from a document&lt;br /&gt;
&lt;br /&gt;
Command : &lt;br /&gt;
pdf_concat –infiles:c:\pdf1.pdf –pages:1-3 –outfile:c:\out.pdf&lt;br /&gt;
This command will create a document with the page 1,2 and 3 of the input document.&lt;br /&gt;
The below command will have the same result as above command.&lt;br /&gt;
pdf_concat –infiles:c:\pdf1.pdf –pages:1,2,3 –outfile:c:\out.pdf&lt;br /&gt;
&lt;br /&gt;
Example 3 : document mix with page range&lt;br /&gt;
Command :&lt;br /&gt;
pdf_concat –infiles:c:\pdf1.pdf;c:\pdf2.pdf –pages:1-3,5,6 ;4,6 –outfile:c:\out.pdf&lt;br /&gt;
This command will create a document with 7 pages.&lt;br /&gt;
The document will contain: &lt;br /&gt;
1.The document pdf1.pdf pages from 1 to 3.&lt;br /&gt;
2.The Document pdf2.pdf page 4.&lt;br /&gt;
3.The Document pdf1.pdf page 5.&lt;br /&gt;
4.The Document pdf2.pdf page 6.&lt;br /&gt;
5.The Document pdf1.pdf page 6.&lt;br /&gt;
c.Specials case&lt;br /&gt;
If the number of page block does not match the document number, the processing order will be: &lt;br /&gt;
&lt;br /&gt;
1.Page blocks process. &lt;br /&gt;
2.Remaining documents pages.&lt;br /&gt;
Example : &lt;br /&gt;
pdf_concat –infiles:c:\pdf1.pdf;c:\pdf2.pdf –pages:1-3 –outfile:c:\out.pdf&lt;br /&gt;
This command will create a document with the page 1 to 3 of the pdf1.pdf file and all the pages of the pdf2.pdf file.&lt;/div&gt;</summary>
		<author><name>imported&gt;Bsteeland</name></author>
		
	</entry>
</feed>