Draw Line Cap : Line « PDF RTF « Java






Draw Line Cap

Draw Line Cap
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.pdf.BaseFont;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfTemplate;
import com.lowagie.text.pdf.PdfWriter;

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

      PdfContentByte cb = writer.getDirectContent();
      PdfTemplate template = cb.createTemplate(500, 200);
      template.setLineCap(1);
      template.setLineWidth(12f);
      template.arc(15f, 75f, 25f, 85f, 0f, 160f);
      template.stroke();
      template.setLineWidth(12f);

      cb.addTemplate(template, 0, 1, -1, 0, 500, 200);
    } catch (Exception e) {
      System.err.println(e.getMessage());
    }
    document.close();
  }
}
           
       








itext.zip( 1,748 k)

Related examples in the same category

1.Shape: DashLineShape: DashLine
2.Shape: LineShape: Line
3.Drawing Lines using PdfContentByteDrawing Lines using PdfContentByte