/* * $Id: AnnotatedImage.java,v 1.3 2005/04/08 12:57:25 blowagie Exp $ * $Name: $ * * This code is part of the 'iText Tutorial'. * You can find the complete tutorial at the following address: * http://itext.sourceforge.net/tutorial/ * * This code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * itext-questions@lists.sourceforge.net */ package com.lowagie.examples.objects.images; 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; /** * Images with an annotation. */ public class AnnotatedImage { /** * Adds some annotated images to a PDF file. * @param args no arguments needed */ public static void main(String[] args) throws Exception { System.out.println("images and annotations"); // step 1: creation of a document-object Document document = new Document(PageSize.A4, 50, 50, 50, 50); // step 2: // we create a writer that listens to the document PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("annotated_images.pdf")); // step 3: we open the document document.open(); // step 4: we add some content Image jpeg = Image.getInstance("otsoe.jpg"); jpeg.setAnnotation(new Annotation("picture", "This is my dog", 0, 0, 0, 0)); jpeg.setAbsolutePosition(100f, 550f); document.add(jpeg); Image wmf = Image.getInstance("iText.wmf"); wmf.setAnnotation(new Annotation(0, 0, 0, 0, "http://www.ujihara.jp/iTextdotNET")); wmf.setAbsolutePosition(100f, 200f); document.add(wmf); // step 5: we close the document document.close(); } }