在iTExt中的表格的单元格中绘制对角线?

时间:2011-04-28 00:57:51

标签: java itext

我正在 iText 中创建一个表格,但我遇到了一个可以用对角线划分的单元格的问题。有人知道我该怎么办?

2 个答案:

答案 0 :(得分:0)

最简单的方法是通过onGenericTag中的PdfPageEvent处理程序。

您通过Chunk.setGenericTag(String tag)为该单元格的内容提供通用标记,并设置一个PdfPageEvent hanlder,在绘制该块时绘制您的线条。

类似的东西:

public class MyPdfPageEvent extends PdfPageEventHelper {
  public void onGenericTag(PdfWriter writer, Document doc, Rectangle rect, String tag) {
      PdfContentByte canvas = writer.getDirectContent();
      canvas.saveState();
      canvas.setColorStroke(Color.BLACK); // or whatever
      // You can also mess with the line's thickness, endcaps, dash style, etc.
      // Lots of options to play with.
      canvas.moveTo(rect.getLeft(), rect.getBottom());
      canvas.lineTo(rect.getRight(), rect.getTop());
      canvas.stroke();
      canvas.restoreState();
  }
}

答案 1 :(得分:0)

好。 @Mark Storer的答案很有帮助,在这种情况下,有一个表的单元格,我使用“PdfPCellEvent”来继承这些方法。

谢谢Mark!