Can JasperReports include a pdf in a report? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T00:15:50Z http://stackoverflow.com/feeds/question/935802 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/935802/can-jasperreports-include-a-pdf-in-a-report 0 Can JasperReports include a pdf in a report? Mike Schall 2009-06-01T17:19:26Z 2009-06-01T18:03:51Z <p>Is it possible to include an existing pdf file in a JasperReport? </p> <p>We really want to append new data to an existing report with out regenerating the existing report. We will be exporting back to pdf. I'm looking at using iText's PdfCopy to merge two pdfs, but was hoping JasperReports might have an easier way...</p> http://stackoverflow.com/questions/935802/can-jasperreports-include-a-pdf-in-a-report/935965#935965 0 Answer by CoverosGene for Can JasperReports include a pdf in a report? CoverosGene 2009-06-01T18:03:51Z 2009-06-01T18:03:51Z <p>I don't think you could do that in JasperReports, but it would be fairly simple in <a href="http://www.lowagie.com/iText/" rel="nofollow">iText</a>.</p> <p>Generate the JasperReport, and then use <a href="http://www.1t3xt.info/api/index.html?com/lowagie/text/pdf/PdfCopy.html" rel="nofollow">PdfCopy</a> to append the new report to the original (or vice-versa).</p>