Simple Annotations with Application(Notepad.exe) : Annotations « PDF RTF « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » PDF RTF » AnnotationsScreenshots 
Simple Annotations with Application(Notepad.exe)

import java.io.FileOutputStream;
import java.net.URL;

import com.lowagie.text.Annotation;
import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Image;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfAction;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfWriter;

public class SimpleAnnotationsWithApplicationPDF {
  public static void main(String[] args) {
    Document document1 = new Document(PageSize.A4, 10101010);
    try {
      PdfWriter writer1 = PdfWriter.getInstance(document1, new FileOutputStream("SimpleAnnotationsWithApplicationPDF.pdf"));
      writer1.setPdfVersion(PdfWriter.VERSION_1_5);
      document1.open();

      Annotation a = new Annotation100f250f200f350f"C://windows/notepad.exe", null, null, null);

      document1.add(a);
    catch (Exception de) {
      de.printStackTrace();
    }
    document1.close();
  }
}
           
       
itext.zip( 1,748 k)
Related examples in the same category
1.Simple Annotations: Add Annotation without Specifying Coordinates
2.Simple Annotations: Draw Rectangle to Show AnnotationsSimple Annotations: Draw Rectangle to Show Annotations
3.Simple Annotations: Local DestinationSimple Annotations: Local Destination
4.Simple AnnotationsSimple Annotations
5.Simple Annotations with Another PDF document
6.Simple Annotations with HyperLink In an ImageSimple Annotations with HyperLink In an Image
7.Simple Annotations with HyperLink
8.Simple Annotations with MpegMovie
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.