目前我正在生成 Pdf 文件。我的问题是我想将我的地址表打印到绝对位置
PdfWriter writer = PdfWriter.GetInstance(doc,stream)
PdfContentByte cb = writer.getDirectContent();
ColumnText ct = new ColumnText(cb);
Phrase myText = new Phrase("TEST paragraph\nNewline");
ct.SetSimpleColumn(myText, 34, 750, 580, 317, 15, Element.ALIGN_LEFT);
ct.Go();
这是我的代码,但 getDirectContent() 给了我错误。所以请任何人帮助我如何将我的地址表打印到固定位置。