我发现有一种方法可以实现这个目标,尽管不是通过任何特别优雅的方式(据我所知)。
您这样做的方法是使用 iTextSharp直接在现有表单域上编写一个文本域。
这里的主要警告是 pdf 基本上不再成为一种形式,所以如果你需要阅读表单域的内容,你就会被淹没。
另一方面,如果表单字段基本上被用作一个简单的指南来帮助告诉 iTextSharp 将文本放在 pdf 的哪个位置(并且仅用于输出),那么这可能会起作用。
using (FileStream filestream = new FileStream(outputpath, FileMode.CreateNew, FileAccess.Write))
{
var stamper = new PdfStamper(reader, filestream);
var acroFields = stamper.AcroFields;
string fieldName = "Field Name";
var fieldPositions = acroFields.GetFieldPositions(fieldName);
var helveticaBold = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 14);
var helveticaRegular = FontFactory.GetFont(FontFactory.HELVETICA, 14);
List<Chunk> chunks = new List<Chunk>();
chunks.Add(new Chunk("Rodrigo, you are ", helveticaRegular));
chunks.Add(new Chunk("NOT", helveticaBold));
chunks.Add(new Chunk(" the father!", helveticaRegular));
Phrase currentPhrase = new Phrase();
foreach (Chunk chunk in chunks)
{
currentPhrase.Add(chunk);
}
foreach (var currentPosition in fieldPositions)
{
PdfContentByte currentCanvas = stamper.GetOverContent(currentPosition.page);
ColumnText currentColumnText = new ColumnText(currentCanvas);
currentColumnText.SetSimpleColumn(currentPhrase, currentPosition.position.Left,
currentPosition.position.Bottom, currentPosition.position.Right,
currentPosition.position.Top, 13, Element.ALIGN_LEFT);
currentColumnText.Go();
}
stamper.FormFlattening = true;
stamper.Close();
}