Stroke Line Width : PdfContentByte « PDF RTF « Java






Stroke Line Width

Stroke Line Width
import java.io.FileOutputStream;

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

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

      document.open();
      PdfContentByte cb = writer.getDirectContent();

      cb.setLineWidth(10f);
      cb.rectangle(100, 700, 100, 100);
      cb.stroke();

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








itext.zip( 1,748 k)

Related examples in the same category

1.Drawing text using PdfContentByteDrawing text using PdfContentByte
2.Text alignment: Right LeftText alignment: Right Left
3.Setting Color for PdfContentByteSetting Color for PdfContentByte
4.Closing StrokeClosing Stroke
5.PdfContentByte: RGBColorStrokeFPdfContentByte: RGBColorStrokeF