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

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

Introduction

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

Prototype

public void setOverlayPosition(Position overlayPosition) 

Source Link

Document

Sets the overlay position.

Usage

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

License:Apache License

/**
 * Marks the document//from  www.  j a v  a2  s.com
 * @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>());
}