Use TextRise of a chunk to create supscript and subscript : Chunk « PDF « Java Tutorial






import java.awt.Color;
import java.io.FileOutputStream;

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.pdf.PdfContentByte;
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();
    float textrise = 6.0f;
    Chunk c;
    for (String s : "this is a test".split(" ")) {
      c = new Chunk(s);
      c.setTextRise(textrise);
      c.setUnderline(new Color(0xC0, 0xC0, 0xC0), 0.2f, 0.0f, 0.0f, 0.0f,
          PdfContentByte.LINE_CAP_BUTT);
      document.add(c);
      textrise -= 2.0f;
    }
    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