PdfContentByte.LINE_CAP_ROUND : Line « PDF « Java Tutorial






import java.io.FileOutputStream;

import com.lowagie.text.Document;
import com.lowagie.text.pdf.PdfContentByte;
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();
    cb.saveState();
    cb.setLineWidth(8);
    cb.setLineCap(PdfContentByte.LINE_CAP_ROUND);
    cb.moveTo(72, 640);
    cb.lineTo(144, 640);
    cb.stroke();
    cb.restoreState();
    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