Почему 2 файла PDF не объединяются? - PullRequest
0 голосов
/ 28 апреля 2019

Я объединяю 2 файла PDF в один, но он ничего не объединяет, хотя явной ошибки нет. Я много пробовал, но все еще не мог понять это правильно. Это папка в моем проекте, которую я использую. Разрешения на запись разрешены, и это позволяет записывать и создавать файлы в нем.

public static void MergeFiles(string destinationFile, string[] sourceFiles) {
    try {
        sourceFiles = new string[2] {
            HostingEnvironment.MapPath(@"/Downloads/Certificates/InspectionReport(78).pdf"),
            HostingEnvironment.MapPath(@"/Downloads/Certificates/InspectionReport(78).pdf")
        };
        //outputPdfPath = Path.GetFileName("~/Downloads/Certificates/119.FDV-3686.pdf");
        destinationFile = HostingEnvironment.MapPath(@"/Downloads/Certificates/InspectionReport(78).pdf");

        int f = 0;
        // we create a reader for a certain document
        PdfReader reader = new PdfReader(sourceFiles[f]);
        // we retrieve the total number of pages
        int n = reader.NumberOfPages;
        //Console.WriteLine("There are " + n + " pages in the original file.");
        // step 1: creation of a document-object
        Document document = new Document(reader.GetPageSizeWithRotation(1));
        // step 2: we create a writer that listens to the document
        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(destinationFile, FileMode.Create));
        // step 3: we open the document
        document.Open();
        PdfContentByte cb = writer.DirectContent;
        PdfImportedPage page;
        int rotation;
        // step 4: we add content
        while (f < sourceFiles.Length) {
            int i = 0;
            while (i < n) {
                i++;
                document.SetPageSize(reader.GetPageSizeWithRotation(i));
                document.NewPage();
                page = writer.GetImportedPage(reader, i);
                rotation = reader.GetPageRotation(i);
                if (rotation == 90 || rotation == 270) {
                    cb.AddTemplate(page, 0, -1f, 1f, 0, 0, reader.GetPageSizeWithRotation(i).Height);
                }
                else {
                    cb.AddTemplate(page, 1f, 0, 0, 1f, 0, 0);
                }
                //Console.WriteLine("Processed page " + i);
            }
            f++;
            if (f < sourceFiles.Length) {
                reader = new PdfReader(sourceFiles[f]);
                // we retrieve the total number of pages
                n = reader.NumberOfPages;
                //Console.WriteLine("There are " + n + " pages in the original file.");
            }
        }
        // step 5: we close the document
        document.Close();
    }
    catch(Exception e) {
        string strOb = e.Message;
    }
}

1 Ответ

1 голос
/ 07 мая 2019

Я объединяю несколько файлов PDF с помощью оператора using для достижения этой цели. Надеюсь, это поможет.

using (var fs = new FileStream(HttpContext.Current.Server.MapPath(outputFilepath),FileMode.Create))
{
    using (var document = new Document())
    {
        using (var pdfCopy = new PdfCopy(document, fs))
        {
            document.Open();

            for (var i = 0; i < numberOfFilesToMerge; i++)
            {
                using (var pdfReader = new PdfReader(sourceFiles[i]))
                {
                    for (var page = 0; page < pdfReader.NumberOfPages;)
                    {
                        pdfCopy.AddPage(pdfCopy.GetImportedPage(pdfReader, ++page));
                    }
                }
            }
        }
     }
 }
...