meta.put("Creator", ConsoleServicesFacade.CREATOR);
} else {
// step 1: creation of a document-object
pdfDocument = new Document(pdfReader.getPageSizeWithRotation(1));
// step 2: we create a writer that listens to the document
pdfWriter = new PdfSimpleConcatenator(pdfDocument, new FileOutputStream(tmpFile),
inputCommand.isCompress());
LOG.debug("PdfSimpleConcatenator created.");
// output document version
if (inputCommand.getOutputPdfVersion() != null) {
pdfWriter.setPdfVersion(inputCommand.getOutputPdfVersion().charValue());