0

在使用 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 中运行良好。

4

1 回答 1

0

由于您没有共享 PDF,因此我对创建的一些 PDF 进行了一些测试。我发现了一个案例,其中/NeedAppearances设置为true的表单中的预填充字段没有被展平(它们只是作为空字段出现)。我想我总是使用错误/NeedAppearances的表单(这是默认设置),因此从未遇到过问题。我解决了这个问题:http: //sourceforge.net/p/itext/code/5682/

修复将在下一个版本中。

于 2013-02-08T11:51:59.643 回答