Example usage for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE

List of usage examples for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE.

Prototype

int LINE_CAP_PROJECTING_SQUARE

To view the source code for com.itextpdf.text.pdf PdfContentByte LINE_CAP_PROJECTING_SQUARE.

Click Source Link

Document

A possible line cap value

Usage

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;
}