Example usage for com.lowagie.text.pdf PdfWriter getInfo

List of usage examples for com.lowagie.text.pdf PdfWriter getInfo

Introduction

In this page you can find the example usage for com.lowagie.text.pdf PdfWriter getInfo.

Prototype

public PdfDictionary getInfo() 

Source Link

Document

Use this method to get the info dictionary if you want to change it directly (add keys and values to the info dictionary).

Usage

From source file:net.sf.jasperreports.engine.export.PdfXmpCreator.java

License:Open Source License

XmpWriter(PdfWriter pdfWriter) {
    this.pdfWriter = pdfWriter;
    this.info = pdfWriter.getInfo();
}