Annotated Image HyperLink : Image Annotation « PDF RTF « Java






Annotated Image HyperLink

Annotated Image HyperLink
import java.io.FileOutputStream;

import com.lowagie.text.Annotation;
import com.lowagie.text.Document;
import com.lowagie.text.Image;
import com.lowagie.text.PageSize;
import com.lowagie.text.pdf.PdfWriter;

public class AnnotatedImageHyperLink {
  public static void main(String[] args) {
    Document document = new Document(PageSize.A4, 50, 50, 50, 50);
    try {
      PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("AnnotatedImageHyperLink.pdf"));

      document.open();

      Image png = Image.getInstance("logo.png");
      png.setAnnotation(new Annotation(0, 0, 0, 0, "http://www.java2s.com"));
      png.setAbsolutePosition(100f, 550f);
      document.add(png);
      
    } catch (Exception de) {
      de.printStackTrace();
    }
    document.close();
  }

}

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Annotated Image in PDFAnnotated Image in PDF