Can JasperReports include a pdf in a report? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T00:15:50Zhttp://stackoverflow.com/feeds/question/935802http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/935802/can-jasperreports-include-a-pdf-in-a-report0Can JasperReports include a pdf in a report?Mike Schall2009-06-01T17:19:26Z2009-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#9359650Answer by CoverosGene for Can JasperReports include a pdf in a report?CoverosGene2009-06-01T18:03:51Z2009-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>