iText 单元格边框剪切文本
我正在编写一个程序,使用iText生成一个pdf或rtf文件,其中包含一个表格。我使用iText类表和单元格,而不是更具体的RtfTable或pdfTable,以便可以在最后生成任何一个文件。我需要将单元格填充设置为值 -1,否则打印工作表上每行数据之间有太多的空间。但是,我现在正在尝试添加边框(特别是pdf文件),并且单元格未与文本对齐。每个单元格的下边框直接穿过文本。仅当单元格填充设置为 2 或更高时,它才会实际包围文本。以下是我正在做的一个示例:
Document document = new Document();
Paragraph paragraph = new Paragraph();
Font iTextFont = new Font(Font.TIMES_ROMAN, 9, Font.NORMAL);
try{
PdfWriter.getInstance(document, new FileOutputStream("C:/datafiles/TestiText.pdf"));
document.open();
Table table = new Table(3);
table.setPadding(-1);
table.setWidth(90);
Cell cell1 = new Cell();
cell1.setBorder(Rectangle.BOX);
cell1.setVerticalAlignment(ElementTags.ALIGN_TOP);
table.setDefaultCell(cell1);
paragraph = new Paragraph("header", iTextFont);
Cell cell = new Cell(paragraph);
cell.setHeader(true);
cell.setColspan(3);
table.addCell(cell);
paragraph = new Paragraph("example cell", iTextFont);
table.addCell(paragraph);
paragraph = new Paragraph("one", iTextFont);
table.addCell(cell);
paragraph = new Paragraph("two", iTextFont);
cell = new Cell(paragraph);
table.addCell(paragraph);
paragraph = new Paragraph("Does this start a new row?", iTextFont);
table.addCell(paragraph);
paragraph = new Paragraph("Four", iTextFont);
table.addCell(paragraph);
paragraph = new Paragraph("Five", iTextFont);
table.addCell(paragraph);
document.add(table);
} catch (Exception e) {
//handle exception
}
document.close();
}
有没有办法通过将整个边框向下移动(而不影响文本放置),或者删除每行之间的空格(间距似乎只是文本上方的问题,而不是下方的问题),而无需将单元格填充设置为-1?