This command only works with PDF documents generated with Amyuni software.
ConcatPDF concatenates two PDF documents. The PDF documents made with the DocToPDF command can be concatenated with this command.
Note
The DocToPDF command can only be used if you accept the terms of the ELECTRONIC END USER LICENSE AGREEMENT FOR AMYUNI DOCUMENT CONVERTER PRODUCTS AS INTEGRATED IN AIA SOFTWARE'S ITP/SERVER PRODUCT. These license terms will be presented to you during installation of ITP/Server and will be installed in the same folder as this manual (Amyuni License Terms.txt). Note, that if you decline these terms, the installer will not install the Amyuni driver software.
ConcatPDF
File1(<text>)
File2(<text>)
Dest(<text>)
ProducePDFA(<True or False>);
Src1: Required.
The full path of the first PDF document.
Src2: Required.
The full path of the second PDF document. This document will be concatenated to the Src1 PDF document. This cannot be the same document as that passed with Src1.
Dest: Required.
The full path of the resulting PDF document that will contain the concatenated pages.
Warning
Src1 and Src2 must be different PDF documents. If they refer to the same PDF document the Amyuni software will fail.
ProducePDFA: Optional (Default setting: False).
This parameter determines whether or not the resulting document will be PDF/A-1b compliant.
Note
This command can only produce PDF/A-1b compliant documents if both input documents are PDF/A-1b compliant and if the parameter ProducePDFA is set to True.
Example script demonstrating the use of the ConcatPDF command.
Parameter Text PDFfile1;
Parameter Text PDFfile2;
Parameter Text PDFresultfile;
ConcatPDF
Src1 (PDFfile1)
Src2 (PDFfile2)
Dest (PDFresultfile);