BE_PDFAppend
BE_PDFAppend ( pdfPathOrContainer ; appendPathOrContainer {; destinationPath } )
Joins two pdf files together, either by appending one to the first, or by creating a third PDF that is the end result.
Version : 4.0
4.0.2 : Renamed from BE_PDF_Append
Parameters :
pdfPathOrContainer : the first PDF file to be appended TO. Can be a container field or a path to a file.
appendPathOrContainer : the second file, to be added to the first file. Can be a container field or a path to a file.
destinationPath : the path to the result file. If left out, then use this in a Set Field step that points to a container file.
Result : 0 for no error, ? for an error or the PDF output for no destinationPath.
Examples :
Set Field [ table::containerField ; BE_PDFAppend ( table::pdfField1 ; table::pdfField2 ) ]
//Sets a container field using two other fields.
Set Field [ table::containerField ; BE_PDFAppend ( "/pluginPath/to/file1.pdf" ; "/pluginPath/to/file2.pdf" ) ]
//Sets a container field using two paths.
Set Variable [ $result ; BE_PDFAppend ( table::pdfField1 ; "/pluginPath/to/file2.pdf" ; "/pluginPath/to/outputFile.pdf" ) ]
//Creates an external PDF file by combining a container field and a different external file.