Simple Annotations: Add Annotation without Specifying Coordinates : Annotations « PDF RTF « Java






Simple Annotations: Add Annotation without Specifying Coordinates

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 SimpleAnnotationsAddAnnotationWithoutSpecifyingCoordinates {
  public static void main(String[] args) {
    Document document1 = new Document(PageSize.A4, 10, 10, 10, 10);
    try {
      PdfWriter writer1 = PdfWriter.getInstance(document1, new FileOutputStream("SimpleAnnotationsAddAnnotationWithoutSpecifyingCoordinates.pdf"));
      writer1.setPdfVersion(PdfWriter.VERSION_1_5);
      document1.open();

      document1.add(new Annotation("blahblah", "Adding an annotation without specifying coordinates"));

    } catch (Exception de) {
      de.printStackTrace();
    }
    document1.close();
  }
}
           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Simple Annotations: Draw Rectangle to Show AnnotationsSimple Annotations: Draw Rectangle to Show Annotations
2.Simple Annotations: Local DestinationSimple Annotations: Local Destination
3.Simple AnnotationsSimple Annotations
4.Simple Annotations with Another PDF document
5.Simple Annotations with Application(Notepad.exe)
6.Simple Annotations with HyperLink In an ImageSimple Annotations with HyperLink In an Image
7.Simple Annotations with HyperLink
8.Simple Annotations with MpegMovie