Width of a chunk : Chunk « PDF « Java Tutorial






import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.Paragraph;
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();
    Chunk c = new Chunk("this is a test");
    float w = c.getWidthPoint();
    Paragraph p = new Paragraph("The width of the chunk: '");
    p.add(c);
    p.add("' is ");
    p.add(String.valueOf(w));
    p.add(" points or ");
    p.add(String.valueOf(w / 72f));
    p.add(" inches or ");
    p.add(String.valueOf(w / 72f * 2.54f));
    p.add(" cm.");
    document.add(p);
    document.add(c);

    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