I have a method to concatenate a list of PDF’s to a single PDF. I need to reduce the size of this file. I’m using iText to achieve this and below is my method. public static void concatPDFs(List<InputStream> streamOfPDFFiles, OutputStream outputStream, boolean paginate) { Document document = new Document(); try { List<InputStream> pdfs = streamOfPDFFiles; […]
The post Is there a way to compress PDF to small size using Java? appeared first on BlogoSfera.