Example usage for org.apache.pdfbox.multipdf Overlay Overlay

List of usage examples for org.apache.pdfbox.multipdf Overlay Overlay

Introduction

In this page you can find the example usage for org.apache.pdfbox.multipdf Overlay Overlay.

Prototype

Overlay

Source Link

Usage

From source file:org.deidentifier.arx.certificate.resources.Watermark.java

License:Apache License

/**
 * Marks the document/*from   www  .j  av  a  2  s  . c om*/
 * @param document
 * @throws IOException
 */
public void mark(PDDocument document) throws IOException {

    Overlay overlay = new Overlay();
    overlay.setInputPDF(document);
    overlay.setAllPagesOverlayPDF(watermark);
    overlay.setOverlayPosition(Overlay.Position.BACKGROUND);
    overlay.overlay(new HashMap<Integer, String>());
}