Combining PDFs with PDFSharp losing form fields

99封情书 提交于 2019-11-30 17:41:38

问题


I am attempting to concatenate two created PDF files to a new PDF using PDFSharp and this code (which I found here):

        // Open the output document
        PdfDocument outputDocument = new PdfDocument();
        // Iterate files
        foreach (string file in files)
        {
            // Open the document to import pages from it.
            PdfDocument inputDocument = PdfReader.Open(file, PdfDocumentOpenMode.Import);

            // Iterate pages
            int count = inputDocument.PageCount;
            for (int idx = 0; idx < count; idx++)
            {
                // Get the page from the external document...
                PdfPage page = inputDocument.Pages[idx];
                // ...and add it to the output document.
                outputDocument.AddPage(page);
            }
        }
        // Save the document...
        string filename = Path.Combine(this.tempFolder, "MyPDF.pdf");
        outputDocument.Save(filename);

The second PDF has form fields which I fill out, also using PDFSharp. The issue I am running into is that when combined into a new PDF, the form fields show up blank.

I have opened up the second PDF after it is created and saved, and the form fields show up with the text just fine.

Am I missing something, or does PDFSharp have some sort of bug in regards to this issue? It seems to me that if I can open and view the PDF just fine, there shouldn't be any problems with combining them.

Thanks in advance for your help!


回答1:


PDFsharp does not fully support form fields. I didn't examine this, but there could be a bug when combining PDF files with filled form fields. We continue to maintain and improve PDFsharp, but there are no plans to improve the handling of form fields.

Maybe it'll work if you try it a different way: open the second PDF for modification, open the first for import and add the pages of the first file at the beginning of the second file (this may not work if both files contain filled form fields).
Create a copy of the second file before you do that if you have to keep the original file.



来源:https://stackoverflow.com/questions/14965242/combining-pdfs-with-pdfsharp-losing-form-fields

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!