PdfAction: Goto Local Page 2 : PDF Action « PDF RTF « Java






PdfAction: Goto Local Page 2

PdfAction: Goto Local Page 2
import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfAction;
import com.lowagie.text.pdf.PdfDestination;
import com.lowagie.text.pdf.PdfWriter;

public class PdfActionGotoLocalPage {
  public static void main(String[] args) {
    Document document = new Document();
    Document remote = new Document();
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("PdfActionGotoLocalPage.pdf"));
      document.open();

      PdfAction action = PdfAction.gotoLocalPage(2, new PdfDestination(PdfDestination.XYZ, -1, 10000, 0), writer);
      writer.setOpenAction(action);
      document.add(new Paragraph("Page 1"));
      document.newPage();
      document.add(new Paragraph("Page 2"));
    } catch (Exception de) {
      de.printStackTrace();
    }
    document.close();
    remote.close();
  }
}
           
       








itext.zip( 1,748 k)

Related examples in the same category

1.PdfAction: Goto Another Pdf FilePdfAction: Goto Another Pdf File
2.PdfAction: Goto Local Page 1PdfAction: Goto Local Page 1
3.Pdf action: open application (notepad.exe)Pdf action: open application (notepad.exe)
4.Named Actions in PDF DocumentNamed Actions in PDF Document
5.Pdf action: jump locallyPdf action: jump locally
6.Chained ActionsChained Actions