set LineCap : Line « PDF « Java Tutorial






import java.io.FileOutputStream;

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

public class MainClass {
  public static void main(String[] args) throws Exception {
    Document.compress = false;
    Document document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("2.pdf"));
    document.open();
    PdfContentByte cb = writer.getDirectContent();
    PdfTemplate template = cb.createTemplate(150, 150);
    template.setLineWidth(12f);
    template.arc(40f, 10f, 20f, -50f, 90f, 45f);
    template.stroke();
    template.setLineCap(PdfContentByte.LINE_JOIN_ROUND);
    template.arc(80f, 30f, 160f, 10f, 90f, 180f);
    template.arc(115f, 65f, 25f, 5f, 0f, 360f);
    template.stroke();
    cb.addTemplate(template, 1f, 0f, 0f, -1f, 0f, PageSize.A4.height());
    document.close();
  }
}








29.43.Line
29.43.1.set LineCap
29.43.2.Add shape to an existing Pdf document
29.43.3.Paint line
29.43.4.Set line width
29.43.5.PdfContentByte.LINE_CAP_BUTT
29.43.6.PdfContentByte.LINE_CAP_ROUND
29.43.7.PdfContentByte.LINE_CAP_PROJECTING_SQUARE
29.43.8.PdfContentByte.LINE_JOIN_MITER
29.43.9.Miter Limit
29.43.10.Line Dash