Example usage for com.itextpdf.text Meta AUTHOR

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

Introduction

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

Prototype

String AUTHOR

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

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   www  . j a  v a 2s. com
 * @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);
}