Allows to fuse an array of PDF files returning a unique document.
1 pdf.stream.join
<pdf.stream.join encoding='encoding'>
<pdf_file_array /> ?
</pdf.stream.join>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Aencoding | string | Indicates the coding of the string of characters to process, for example ISO-8859-1 or UTF-8. If not specified, the one defined in the configuration file for the server is used. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Epdf_file_array | arraylist | The array containing the prompters to PDF files which you want to process. |
Returns | |
---|---|
Type | Description |
pdf.reader | Returns a PDF object with the result of the fuse of all the prompters to PDF files contained in the array. |
Example
Fuse two PDF objects in an unique PDF document.
Copy
<xsql-script name='pdf_reader_join'> <body> <file.bytes.write> <file type='absolute' name='src3.pdf' /> <pdf.stream.join> <array> <file type='absolute' name='src1.pdf' /> <file type='absolute' name='src2.pdf' /> </array> </pdf.stream.join> </file.bytes.write> </body> </xsql-script>