我需要在不同的PDF页面中呈现多种类型的页脚和页眉。我怎样才能做到这一点? 我只能在所有PDF页面中使用单一类型的页脚。
答案 0 :(得分:0)
MultiPDFDocuments documents = new MultiPDFDocuments();
PDFDocument document = new PDFDocument();
document.template = "@template1";
Options options = new Options();
options.pageSize = IHtmlToPdfTransformer.A4L;
document.options = options;
documents.add(document);
document = new PDFDocument();
document.template = "@template2";
options = new Options();
options.pageSize = IHtmlToPdfTransformer.A4L;
document.options = options;
documents.add(document);
File file = new File("C:/Users/PDF.pdf");
PDF.writePDF(file,documents);