1
看起來有一個錯誤在表格中以指定寬度和旋轉文本呈現單元格。如果旋轉角度爲(Math.PI/2),則文本會滲入相鄰單元格,並且如果旋轉角度爲 - (Math.PI/2),則單元格高度將延伸至頁面的底部。itext 7旋轉表格單元格中的文本
下面是單元測試:
@Test
public void tableRotationTest02() throws IOException,InterruptedException {
String outFileName = OUTPUT_FOLDER + "tableRotationTest02.pdf";
// String cmpFileName = sourceFolder + cmpPrefix + "tableRotationTest02.pdf";
// FileOutputStream file = new FileOutputStream(outFileName);
PdfWriter writer = new PdfWriter(outFileName);
PdfDocument pdfDoc = new PdfDocument(writer);
Document doc = new Document(pdfDoc);
Table table = new Table(new float[]{25, 50})
.addCell(new Cell().add(new Paragraph("cell 1, 1").setRotationAngle((Math.PI/2))))
.addCell(new Cell().add(new Paragraph("cell 1, 2").setRotationAngle((Math.PI/3))))
.addCell(new Cell().add(new Paragraph("cell 2, 1").setRotationAngle(-(Math.PI/2))))
.addCell(new Cell().add(new Paragraph("cell 2, 2").setRotationAngle((Math.PI))));
doc.add(table);
doc.close();
// Assert.assertNull(new CompareTool().compareByContent(outFileName, cmpFileName, destinationFolder, "diff"));
}
感謝您提供自包含的代碼示例。這確實是一個錯誤。我們會看看它。 –