셀 이벤트 수신기를 사용하여 "흥미로운"셀 기능을 수행 할 수 있습니다.
예.
public class PercentileCellBackground implements PdfPCellEvent {
public PercentileCellBackground(float percent, BaseColor leftColor, BaseColor rightColor) {
this.percent = percent;
this.leftColor = leftColor;
this.rightColor = rightColor;
}
@Override
public void cellLayout(PdfPCell cell, Rectangle position, PdfContentByte[] canvases) {
PdfContentByte canvas = canvases[PdfPTable.BACKGROUNDCANVAS];
float xTransition = position.getLeft() + (position.getRight() - position.getLeft()) * (percent/100.0f);
float yTransition = (position.getTop() + position.getBottom())/2f;
float radius = (position.getRight() - position.getLeft()) * 0.025f;
PdfShading axial = PdfShading.simpleAxial(canvas.getPdfWriter(),
xTransition - radius, yTransition, xTransition + radius, yTransition, leftColor, rightColor);
PdfShadingPattern shading = new PdfShadingPattern(axial);
canvas.saveState();
canvas.setShadingFill(shading);
canvas.rectangle(position.getLeft(), position.getBottom(), position.getWidth(), position.getHeight());
canvas.fill();
canvas.restoreState();
}
final float percent;
final BaseColor leftColor;
final BaseColor rightColor;
}
(PercentileCellBackground) 당신은 다음과 같이이 이벤트 리스너 클래스 사용할 수 있습니다
: 귀하의 작업을 위해이 같은 PdfPCellEvent
구현할 수
Document document = new Document();
try (OutputStream os = new FileOutputStream(new File(RESULT_FOLDER, "TableWithCellsWithPercentileBackground.pdf"))) {
PdfWriter.getInstance(document, os);
document.open();
Font font = new Font(FontFamily.UNDEFINED, Font.UNDEFINED, Font.UNDEFINED, BaseColor.WHITE);
PdfPTable table = new PdfPTable(2);
table.setWidthPercentage(40);
PdfPCell cell = new PdfPCell(new Phrase("Group A"));
table.addCell(cell);
cell = new PdfPCell(new Phrase(new Chunk("60 Pass, 40 Fail", font)));
cell.setCellEvent(new PercentileCellBackground(60, BaseColor.GREEN, BaseColor.RED));
table.addCell(cell);
cell = new PdfPCell(new Phrase("Group B"));
table.addCell(cell);
cell = new PdfPCell(new Phrase(new Chunk("70 Pass, 30 Fail", font)));
cell.setCellEvent(new PercentileCellBackground(70, BaseColor.GREEN, BaseColor.RED));
table.addCell(cell);
cell = new PdfPCell(new Phrase("Group C"));
table.addCell(cell);
cell = new PdfPCell(new Phrase(new Chunk("50 Pass, 50 Fail", font)));
cell.setCellEvent(new PercentileCellBackground(50, BaseColor.GREEN, BaseColor.RED));
table.addCell(cell);
document.add(table);
document.close();
}
(CellsWithPercentileBackground 테스트를 testCreateTableWithCellsWithPercentileBackground
)
결과는 다음과 같습니다 당신이 볼 수 있듯이
, 내가 그린/레드 전환 덜 가혹한 만들기 위해 음영을 사용했다. 좀 더 가혹한 경우 cellLayout
메서드에서 반지름 인수 0.025f
을 줄이거 나 대신 사각형 그리기 명령어를 사용하십시오.