List of usage examples for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE
int LINE_CAP_PROJECTING_SQUARE
To view the source code for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE.
Click Source Link
From source file:mkl.testarea.itext5.pdfcleanup.PdfCleanUpRegionFilter.java
License:Open Source License
private static EndType getEndType(int lineCapStyle) { switch (lineCapStyle) { case PdfContentByte.LINE_CAP_BUTT: return EndType.OPEN_BUTT; case PdfContentByte.LINE_CAP_PROJECTING_SQUARE: return EndType.OPEN_SQUARE; }/*w w w .j av a2s . com*/ return EndType.OPEN_ROUND; }