Example usage for com.itextpdf.text Meta TITLE

List of usage examples for com.itextpdf.text Meta TITLE

Introduction

In this page you can find the example usage for com.itextpdf.text Meta TITLE.

Prototype

String TITLE

To view the source code for com.itextpdf.text Meta TITLE.

Click Source Link

Document

The possible value of an alignment attribute.

Usage

From source file:com.poet.ar.remover.AnnotationRemover.java

/**
 * remove Creator,Subject,Producer,Author,Title,Keywords
 * @param reader/*from  w w  w .j a va 2s  . co  m*/
 * @param stamper
 */
private static void removeInfo(PdfReader reader, PdfStamper stamper) {
    Map<String, String> infos = reader.getInfo();

    infos.put(Meta.AUTHOR, "");
    infos.put(Meta.KEYWORDS, "");
    infos.put(Meta.TITLE, "");
    infos.put(Meta.SUBJECT, "");

    infos.put("Creator", "");
    infos.put("Subject", "");
    infos.put("Author", "");
    infos.put("Title", "");
    infos.put("Keywords", "");

    // this will not work ,if you want change producer , you need buy a itext license
    infos.put(Meta.PRODUCER, "");

    stamper.setMoreInfo(infos);
}