Line Dash : 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(3);
    cb.moveTo(40, 480);
    cb.lineTo(320, 480);
    cb.stroke();
    cb.setLineDash(6, 0);
    cb.moveTo(40, 450);
    cb.lineTo(320, 450);
    cb.stroke();
    float[] dash1 = { 10, 5, 5, 5, 20 };
    cb.setLineDash(dash1, 5);
    cb.moveTo(40, 440);
    cb.lineTo(320, 440);
    cb.stroke();
    float[] dash2 = { 9, 6, 0, 6 };
    cb.setLineCap(PdfContentByte.LINE_CAP_ROUND);
    cb.setLineDash(dash2, 0);
    cb.moveTo(40, 430);
    cb.lineTo(320, 430);
    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