// fos.close();
}
FileOutputStream fileOutputStream=new FileOutputStream(tmpFile);
PdfCreator pdfCreator=new PdfCreator();
logger.debug("Call PDF Creation");
pdfCreator.setVideoHeight(dcConf.getVideoHeight());
pdfCreator.setVideoWidth(dcConf.getVideoWidth());
FileOutputStream pdfFile=pdfCreator.createPdfFile(fileOutputStream, documentsMap, defaultStyle);
pdfFile.flush();
pdfFile.close();