Chunk with anchor : Chunk « PDF « Java Tutorial






import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.pdf.PdfWriter;

public class MainClass {

  public static void main(String[] args) throws Exception {

    Document document = new Document();

    PdfWriter.getInstance(document, new FileOutputStream("2.pdf"));
    document.open();
    Font font = new Font();
    font.setStyle(Font.UNDERLINE);
    Chunk chunk = new Chunk("java2s", font);
    chunk.setAnchor("http://www.java2s.com");
    document.add(chunk);
    document.close();
  }
}








29.16.Chunk
29.16.1.PDF file with hyphenated text
29.16.2.Chunk with anchor
29.16.3.Chunk with action
29.16.4.Width of a chunk
29.16.5.Chunk.NEWLINE
29.16.6.Scale Chunk
29.16.7.Use TextRise of a chunk to create supscript and subscript
29.16.8.Background of a chunk
29.16.9.Chunk Underline
29.16.10.Chunk Text Render Mode: PdfContentByte.TEXT_RENDER_MODE_FILL
29.16.11.Chunk Text Render Mode: PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE
29.16.12.Chunk Text Render Mode: PdfContentByte.TEXT_RENDER_MODE_INVISIBLE
29.16.13.Chunk Text Render Mode:PdfContentByte.TEXT_RENDER_MODE_STROKE
29.16.14.Chunk in bold
29.16.15.Create chunk from string
29.16.16.Skew a chunk
29.16.17.Create Phase from chunk
29.16.18.Local Destination