Copy Outer Field
Contents
[
Hide
]
Copy a field from another PDF
- Create a destination PDF with at least one page.
- Bind the destination PDF to the
FormEditorfacade. - Call
copyOuterField(...)with the source document path, field name, target page, and coordinates. - Save the updated destination document.
public static void copyOuterField(Path inputFile, Path outputFile) {
try (Document document = new Document()) {
document.getPages().add();
document.save(outputFile.toString());
}
FormEditor editor = new FormEditor();
try {
editor.bindPdf(outputFile.toString());
editor.copyOuterField(inputFile.toString(), "First Name", 1, 200, 600);
editor.save(outputFile.toString());
} finally {
editor.close();
}
}