使用iText和java创建pdf的自定义模板

时间:2015-10-14 07:27:55

标签: java itext

我是iText的新手。我想使用iText(Java)以PDF格式创建多个报告。每个报告都采用不同的设计。有没有办法手动创建模板?我正在使用数据库数据来创建pdf。 iText中是否有任何功能允许我这样做。提前谢谢。

1 个答案:

答案 0 :(得分:5)

如果您打算使用其他pdf作为模板并将其作为背景,则可以执行此类操作。

//Starting a new pdf document
Document document = new Document();
ByteArrayOutputStream os = new ByteArrayOutputStream();

//This is your new pdf doc
PdfWriter writer = PdfWriter.getInstance(document, os);

document.open();
document.newPage();

//Get the file of you template, you should use try catch and then close it
//I simply to just show sistem
FileInputStream template = new FileInputStream("template.pdf");

//Load it into a reader
PdfReader reader = new PdfReader(template);

//Get the page of the template you like
PdfImportedPage page = writer.getImportedPage(reader, 1);

//Now you can add it to you report
PdfContentByte cb = writer.getDirectContent();
cb.addTemplate(page, 0, 0);

//Here goes code of other stuff that you add..