Add Rubber Stamp
Contents
[
Hide
]
Add a rubber stamp
- Bind the source PDF to the
PdfContentEditorfacade. - Call
createRubberStamp(...)with the page number, rectangle, title, contents, and color. - Save the updated PDF document.
public static void addRubberStamp(Path inputFile, Path outputFile) {
PdfContentEditor editor = new PdfContentEditor();
try {
editor.bindPdf(inputFile.toString());
editor.createRubberStamp(1, new Rectangle(120, 450, 180, 60), "Approved", "Approved by reviewer", Color.GREEN);
editor.save(outputFile.toString());
} finally {
editor.close();
}
}