Strike Through Text : Chunk Font « PDF RTF « Java






Strike Through Text

Strike Through Text
import java.io.FileOutputStream;

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

public class StrikeThroughTextPDF {
  public static void main(String[] args) {
    Document document = new Document();
    try {
      PdfWriter.getInstance(document, new FileOutputStream("StrikeThroughTextPDF.pdf"));
      document.open();

      Chunk strikethru = new Chunk("strike through example");
      strikethru.setUnderline(0.5f, 3f);  
      document.add(strikethru);

    } catch (Exception ioe) {
      System.err.println(ioe.getMessage());
    }
    document.close();
  }
}
           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Chunk Underlined TextChunk Underlined Text
2.Chunk Font ColorChunk Font Color
3.Chunks Font BackgroundChunks Font Background
4.Chunks Text Rise UnderLineChunks Text Rise UnderLine