上周,我被要求为盲人构建一个应用程序,以编程方式填写 PDF 文档。他遇到的问题是,如果文档中的字段没有正确标记,那么他就无法将他的签名和其他信息放入文档中的正确位置。
我的第一种方法是尝试使用 iTextSharp 阅读文档,然后将他的签名插入最有可能是签名框的字段中:
public string[] MassFieldEdit(IDictionary<string, string> userData, string originalDocument, string edittedDocument, bool flatten)
{
PdfReader reader = new PdfReader(originalDocument);
reader.SelectPages("1-" + reader.NumberOfPages.ToString());
using (PdfStamper stamper = new PdfStamper(reader, new FileStream(edittedDocument, FileMode.Create)))
{
AcroFields form = stamper.AcroFields;
ICollection<string> fieldKeys = form.Fields.Keys;
List<string> leftover = new List<string>(fieldKeys);
foreach (string fieldKey in fieldKeys)
{
foreach (KeyValuePair<string, string> s in user)
{
//Replace Form field with my custom data
if (fieldKey.ToLower().Contains(s.Key.ToLower()))
{
form.SetField(fieldKey, s.Value);
leftover.Remove(fieldKey);
}
}
}
//The below will make sure the fields are not editable in
//the output PDF.
stamper.FormFlattening = flatten;
return leftover.ToArray();
}
}
这通过获取一个字典集,键是一个单词或短语,根据 PDF 字段检查它,然后如果该字段与键中的单词或短语匹配,则将值插入到字段中。
但是我现在遇到的问题是,如果不存在任何字段,那么尽管它可能在虚线旁边有“在此处签名”,但是如果不知道虚线的确切位置,就无法将文本插入到虚线上,也不能我的用户选择虚线,因为这违背了程序的要点。
我查看了许多以前的问题和答案,包括:
- 如何使用 iText/Sharp 从 AcroFields 获取 TextField?
- 如何在c#中将PDF转换为WORD
- 使用 itextsharp 在现有 pdf 中插入文本
- ITextSharp 将文本插入现有的 pdf
我需要一种方法来检测签名行,然后将他的名字插入到签名行中,这比在字段名称上进行拍摄更有把握。无论是在存在正确标记的字段的情况下,还是在签名行可能不超过一行显示“在此处签名”的文本的情况下。