我第一次尝试使用iTextSharp(),而且我在pdf文档中创建表时遇到问题。 实际上,我想对角分割第一个单元格以写入第一行的标题和第一列的标题。
图1是我能做的 图2是我想要做的事情
答案 0 :(得分:1)
您需要使用official documentation中记录的单元格事件创建该特殊单元格。
我会给你一些伪代码,你可以转换为C#,这将创建一个如下所示的表:
这是单元格事件的伪代码:
class Diagonal implements PdfPCellEvent {
protected String columns;
protected String rows;
public Diagonal(String columns, String rows) {
this.columns = columns;
this.rows = rows;
}
public void cellLayout(PdfPCell cell, Rectangle position,
PdfContentByte[] canvases) {
PdfContentByte canvas = canvases[PdfPTable.TEXTCANVAS];
ColumnText.showTextAligned(canvas, Element.ALIGN_RIGHT,
new Phrase(columns), position.getRight(2), position.getTop(12), 0);
ColumnText.showTextAligned(canvas, Element.ALIGN_LEFT,
new Phrase(rows), position.getLeft(2), position.getBottom(2), 0);
canvas = canvases[PdfPTable.LINECANVAS];
canvas.moveTo(position.getLeft(), position.getTop());
canvas.lineTo(position.getRight(), position.getBottom());
canvas.stroke();
}
}
这是伪代码,向您展示如何使用单元格事件:
public void createPdf(String dest) throws IOException, DocumentException {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
PdfPTable table = new PdfPTable(6);
table.getDefaultCell().setMinimumHeight(30);
PdfPCell cell = new PdfPCell();
cell.setCellEvent(new Diagonal("Gravity", "Occ"));
table.addCell(cell);
table.addCell("1");
table.addCell("2");
table.addCell("3");
table.addCell("4");
table.addCell("5");
for (int i = 0; i < 5; ) {
table.addCell(String.valueOf(++i));
table.addCell("");
table.addCell("");
table.addCell("");
table.addCell("");
table.addCell("");
}
document.add(table);
document.close();
}
现在由您将此伪代码(实际上是可用的Java代码)转换为C#。