Rendering Mode: TEXT_RENDER_MODE_FILL_STROKE, width 0.5f : Chunk Rendering Mode « PDF RTF « Java






Rendering Mode: TEXT_RENDER_MODE_FILL_STROKE, width 0.5f

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

import com.lowagie.text.Chunk;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfWriter;

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

      document.open();
      
      Paragraph p = new Paragraph("Text Rendering:");
      document.add(p);
      Chunk chunk = new Chunk("rendering test");
      chunk.setTextRenderMode(PdfContentByte.TEXT_RENDER_MODE_FILL_STROKE, 0.5f, new Color(0x00, 0x00, 0x00));
      document.add(chunk);

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

           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Rendering Mode: TEXT_RENDER_MODE_FILL
2.Rendering Mode: TEXT_RENDER_MODE_FILL_STROKE
3.Rendering Mode: TEXT_RENDER_MODE_INVISIBLE
4.Rendering Mode: TEXT_RENDER_MODE_STROKE
5.Rendering text from right to leftRendering text from right to left