设置“”时出现Null异常;textfont";iTextSharp中AcroFields的属性

本文关键字:iTextSharp quot AcroFields 属性 textfont 设置 异常 Null | 更新日期: 2023-09-27 17:58:06

使用iTextSharp更改现有PDF文档中AcroForm字段的字体时,在设置"textfont"属性的行遇到空指针异常。不过,我可以使用相同的代码设置字段的值。我已经按照以下示例创建了我的代码https://stackoverflow.com/questions/14748901/custom-font-not-getting-applied-on-existing-pdf-template-itextsharppdfstamper

我的堆栈跟踪如下:

at iTextSharp.text.pdf.PdfContentByte.SaveColor(BaseColor color, Boolean fill)
at iTextSharp.text.pdf.PdfContentByte.SetRGBColorFill(Int32 red, Int32 green, Int32 blue)
at iTextSharp.text.pdf.PdfContentByte.SetColorFill(BaseColor value)
at iTextSharp.text.pdf.AcroFields.SetFieldProperty(String field, String name, Object value, Int32[] inst)
at iTextSharpUsage.Utilities.UpdateFontUsingEmbededFont(String inputPdf, String resultPdf) in D:'iTextSharpUsage'iTextSharpUsage'iTextSharpUsage'Utilities.cs:line 229

我的代码如下:

var pdfReader = new PdfReader(inputPdf);
string fontsfolder = @"D:'Airmole'airmole.ttf";
var pdfStamper = new PdfStamper(pdfReader, new FileStream(resultPdf, FileMode.Create));
BaseFont customfont = BaseFont.CreateFont();
AcroFields af = pdfStamper.AcroFields;
List<BaseFont> list = new List<BaseFont>();
list.Add(customfont);
iTextSharp.text.Font bold = new iTextSharp.text.Font(customfont, 13,0,BaseColor.BLACK);
af.SubstitutionFonts = list;
foreach (var field in af.Fields)
{
    af.SetField(field.Key, "s");
    //this line works fine
    bool isSuccess = pdfStamper.AcroFields.SetFieldProperty(field.Key, "textcolor ", BaseColor.BLACK , null);
    //the line bellow throws a null pointer exception
    bool isSucces1s = pdfStamper.AcroFields.SetFieldProperty(field.Key, "textfont", customfont, null);
}

我必须添加更多的代码才能工作吗??

这里有一个快速更新。。。由于@Bruno发布的评论,我解决了这个问题,这种功能在5.3.3版本中运行良好。

设置“”时出现Null异常;textfont";iTextSharp中AcroFields的属性

由于您没有共享PDF,我对我创建的一些PDF进行了一些测试。我发现了一种情况,其中/NeedAppearances设置为true的表单中的预填充字段没有被展平(它们只是显示为空字段)。我想我一直在处理/NeedAppearancesfalse(这是默认值)的表单,因此从未遇到过这个问题。我解决了这个问题:http://sourceforge.net/p/itext/code/5682/

修复程序将在下一个版本中发布。