1

我正在尝试通过将FDF中的数据保存到我的WPF应用程序中的PDFTemplate来保存PDF文件。

所以,情况是这样的。我有一个PDFTemplate.pdf作为模板并具有占位符(或字段)。现在我以编程方式生成这个FDF文件,该文件又包含要填写的PDFTemplate所需的所有字段名称。此外,这个FDF还包含PDFTemaplte的文件路径,因此在打开时,它知道要填写哪个PDF利用。

现在,当尝试双击FDF时,它会打开Adob​​er Acrobat Reader并显示填充了数据的PDFTemplate。但我无法使用“文件”菜单保存此文件,因为它说此文件将在没有数据。

我想知道是否可以在不使用第三方组件的情况下将FDF数据导入PDF并保存。

另外,如果很难做到这一点,那么就能够做到这一点的免费图书馆而言,可能的解决方案是什么?

我刚刚意识到iTextSharp对于商业应用程序不是免费的。

4

1 回答 1

2

我已经能够使用另一个库PDFSharp来实现这一点。

它有点类似于 iTextSharp 的工作方式,除了 iTextSharp 中更好且更易于使用的某些地方。我发布代码以防有人想做类似的事情:

//Create a copy of the original PDF file from source 
//to the destination location
File.Copy(formLocation, outputFileNameAndPath, true);

//Open the newly created PDF file
using (var pdfDoc = PdfSharp.Pdf.IO.PdfReader.Open(
                    outputFileNameAndPath, 
                    PdfSharp.Pdf.IO.PdfDocumentOpenMode.Modify))
{
   //Get the fields from the PDF into which the data 
   //is supposed to be inserted
    var pdfFields = pdfDoc.AcroForm.Fields;

    //To allow appearance of the fields
    if (pdfDoc.AcroForm.Elements.ContainsKey("/NeedAppearances") == false)
    {
        pdfDoc.AcroForm.Elements.Add(
            "/NeedAppearances", 
            new PdfSharp.Pdf.PdfBoolean(true));
    }
    else
    {
        pdfDoc.AcroForm.Elements["/NeedAppearances"] = 
            new PdfSharp.Pdf.PdfBoolean(true);
    }

    //To set the readonly flags for fields to their original values
    bool flag = false;

    //Iterate through the fields from PDF
    for (int i = 0; i < pdfFields.Count(); i++)
    {
        try
        {
            //Get the current PDF field
            var pdfField = pdfFields[i];

            flag = pdfField.ReadOnly;

            //Check if it is readonly and make it false
            if (pdfField.ReadOnly)
            {
                pdfField.ReadOnly = false;
            }

            pdfField.Value = new PdfSharp.Pdf.PdfString(
                             fdfDataDictionary.Where(
                             p => p.Key == pdfField.Name)
                             .FirstOrDefault().Value);

            //Set the Readonly flag back to the field
            pdfField.ReadOnly = flag;
        }
        catch (Exception ex)
        {
            throw new Exception(ERROR_FILE_WRITE_FAILURE + ex.Message);
        }
    }

    //Save the PDF to the output destination
    pdfDoc.Save(outputFileNameAndPath);                
    pdfDoc.Close();
}
于 2013-06-26T08:23:35.827 回答