AnnotatedImageHyperLink.java Source code

Java tutorial

Introduction

Here is the source code for AnnotatedImageHyperLink.java

Source

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();
    }

}