Example usage for com.lowagie.text.pdf PdfName NUMCOPIES

List of usage examples for com.lowagie.text.pdf PdfName NUMCOPIES

Introduction

In this page you can find the example usage for com.lowagie.text.pdf PdfName NUMCOPIES.

Prototype

PdfName NUMCOPIES

To view the source code for com.lowagie.text.pdf PdfName NUMCOPIES.

Click Source Link

Document

A name

Usage

From source file:questions.stamppages.ChangeViewerPreferences.java

public static void main(String[] args) throws IOException, DocumentException {
    PdfReader reader = new PdfReader(RESOURCE);
    PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(RESULT));
    stamper.setViewerPreferences(PdfWriter.PageModeUseThumbs);
    stamper.addViewerPreference(PdfName.NUMCOPIES, new PdfNumber(5));
    stamper.close();//w  w w .j a va 2  s  .  c om
}