web-dev-qa-db-ja.com

2つ(またはそれ以上)のPDFを組み合わせる

背景:営業スタッフに週次レポートパッケージを提供する必要があります。このパッケージには、いくつかの(5-10)クリスタルレポートが含まれています。

問題:ユーザーにすべてのレポートを実行させ、単一のレポートのみを実行させたい。私はレポートを作成してからこれを行うことができると考えていました:

List<ReportClass> reports = new List<ReportClass>();
reports.Add(new WeeklyReport1());
reports.Add(new WeeklyReport2());
reports.Add(new WeeklyReport3());
<snip>

foreach (ReportClass report in reports)
{
    report.ExportToDisk(ExportFormatType.PortableDocFormat, @"c:\reports\" + report.ResourceName + ".pdf");
}

これにより、レポートがいっぱいのフォルダーが提供されますが、すべての週次レポートを含む1つのPDFをすべてのユーザーにメールで送信します。

サードパーティ製のコントロールをインストールせずにこれを行う簡単な方法はありますか?私はすでにDevExpressとCrystalReportsを持っているので、これ以上追加したくないです。

それらをforeachループまたは別のループで組み合わせるのが最善でしょうか? (または別の方法)

51
Nathan Koop

私は同様の問題を解決しなければならず、私がやったことは PDFSharp プロジェクトを使用する小さなpdfmergeユーティリティを作成することでした本質的にMITライセンス。

コードは非常にシンプルです。cmdlineユーティリティが必要だったので、PDFマージの場合よりも引数の解析専用のコードが多くあります。

using (PdfDocument one = PdfReader.Open("file1.pdf", PdfDocumentOpenMode.Import))
using (PdfDocument two = PdfReader.Open("file2.pdf", PdfDocumentOpenMode.Import))
using (PdfDocument outPdf = new PdfDocument())
{                
    CopyPages(one, outPdf);
    CopyPages(two, outPdf);

    outPdf.Save("file1and2.pdf");
}

void CopyPages(PdfDocument from, PdfDocument to)
{
    for (int i = 0; i < from.PageCount; i++)
    {
        to.AddPage(from.Pages[i]);
    }
}
82
Andrew Burns

PDFSharpを使用してX個のPDFをマージする単一の関数を次に示します

using PdfSharp;
using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;

public static void MergePDFs(string targetPath, params string[] pdfs) {
    using(PdfDocument targetDoc = new PdfDocument()){
        foreach (string pdf in pdfs) {
            using (PdfDocument pdfDoc = PdfReader.Open(pdf, PdfDocumentOpenMode.Import)) {
                for (int i = 0; i < pdfDoc.PageCount; i++) {
                    targetDoc.AddPage(pdfDoc.Pages[i]);
                }
            }
        }
        targetDoc.Save(targetPath);
    }
}
27
JustMaier

これは私が理解したものであり、あなたと共有したかったものです。

ここでは、複数のPDFを1つに結合できます(入力リストの順序に従って)

    public static byte[] MergePdf(List<byte[]> pdfs)
    {
        List<PdfSharp.Pdf.PdfDocument> lstDocuments = new List<PdfSharp.Pdf.PdfDocument>();
        foreach (var pdf in pdfs)
        {
            lstDocuments.Add(PdfReader.Open(new MemoryStream(pdf), PdfDocumentOpenMode.Import));
        }

        using (PdfSharp.Pdf.PdfDocument outPdf = new PdfSharp.Pdf.PdfDocument())
        { 
            for(int i = 1; i<= lstDocuments.Count; i++)
            {
                foreach(PdfSharp.Pdf.PdfPage page in lstDocuments[i-1].Pages)
                {
                    outPdf.AddPage(page);
                }
            }

            MemoryStream stream = new MemoryStream();
            outPdf.Save(stream, false);
            byte[] bytes = stream.ToArray();

            return bytes;
        }           
    }
4
Akaize

PDFsharp は、複数のPDFドキュメントを1つにマージできるようにします。

ITextSharp でも同じことが可能です。

4
M4N

ITextsharpとc#を使用してPDFファイルを結合しました。これは私が使用したコードです。

string[] lstFiles=new string[3];
    lstFiles[0]=@"C:/pdf/1.pdf";
    lstFiles[1]=@"C:/pdf/2.pdf";
    lstFiles[2]=@"C:/pdf/3.pdf";

    PdfReader reader = null;
    Document sourceDocument = null;
    PdfCopy pdfCopyProvider = null;
    PdfImportedPage importedPage;
    string outputPdfPath=@"C:/pdf/new.pdf";


    sourceDocument = new Document();
    pdfCopyProvider = new PdfCopy(sourceDocument, new System.IO.FileStream(outputPdfPath, System.IO.FileMode.Create));

    //Open the output file
    sourceDocument.Open();

    try
    {
        //Loop through the files list
        for (int f = 0; f < lstFiles.Length-1; f++)
        {
            int pages =get_pageCcount(lstFiles[f]);

            reader = new PdfReader(lstFiles[f]);
            //Add pages of current file
            for (int i = 1; i <= pages; i++)
            {
                importedPage = pdfCopyProvider.GetImportedPage(reader, i);
                pdfCopyProvider.AddPage(importedPage);
            }

            reader.Close();
         }
        //At the end save the output file
        sourceDocument.Close();
    }
    catch (Exception ex)
    {
        throw ex;
    }


private int get_pageCcount(string file)
{
    using (StreamReader sr = new StreamReader(File.OpenRead(file)))
    {
        Regex regex = new Regex(@"/Type\s*/Page[^s]");
        MatchCollection matches = regex.Matches(sr.ReadToEnd());

        return matches.Count;
    }
}
3

ここにはすでにいくつかの良い答えがありますが、 pdftk がこのタスクに役立つかもしれないと言うかもしれないと思いました。 1つPDFを直接生成する代わりに、必要な各PDFを生成し、それらをpdftkを使用して後処理として結合することができます。 system()またはShellExecute()呼び出しを使用して、プログラム内から。

2
Naaff

ITextSharpを使用した例を次に示します

public static void MergePdf(Stream outputPdfStream, IEnumerable<string> pdfFilePaths)
{
    using (var document = new Document())
    using (var pdfCopy = new PdfCopy(document, outputPdfStream))
    {
        pdfCopy.CloseStream = false;
        try
        {
            document.Open();
            foreach (var pdfFilePath in pdfFilePaths)
            {
                using (var pdfReader = new PdfReader(pdfFilePath))
                {
                    pdfCopy.AddDocument(pdfReader);
                    pdfReader.Close();
                }
            }
        }
        finally
        {
            document?.Close();
        }
    }
}

PdfReaderコンストラクターには多くのオーバーロードがあります。パラメータタイプIEnumerable<string>IEnumerable<Stream>に置き換えることが可能であり、同様に機能するはずです。メソッドはOutputStreamを閉じず、そのタスクをStream作成者に委任することに注意してください。

1
hmadrigal

多くの人がPDF Sharpを推奨していますが、そのプロジェクトは2008年6月以降更新されたようには見えません。さらに、ソースは利用できません。

個人的には、iTextSharpで遊んでいますが、これはかなり簡単に操作できます。

1
NotMe

3つのpdfbytesをマージして1バイトを返す必要があるため、上記2つを組み合わせました

internal static byte[] mergePdfs(byte[] pdf1, byte[] pdf2,byte[] pdf3)
        {
            MemoryStream outStream = new MemoryStream();
            using (Document document = new Document())
            using (PdfCopy copy = new PdfCopy(document, outStream))
            {
                document.Open();
                copy.AddDocument(new PdfReader(pdf1));
                copy.AddDocument(new PdfReader(pdf2));
                copy.AddDocument(new PdfReader(pdf3));
            }
            return outStream.ToArray();
        } 
1
Marimar

バージョン5.xまでのiTextSharpを使用して2つのbyte[]を組み合わせる:

internal static MemoryStream mergePdfs(byte[] pdf1, byte[] pdf2)
{
    MemoryStream outStream = new MemoryStream();
    using (Document document = new Document())
    using (PdfCopy copy = new PdfCopy(document, outStream))
    {
        document.Open();
        copy.AddDocument(new PdfReader(pdf1));
        copy.AddDocument(new PdfReader(pdf2));
    }
    return outStream;
}

byte[]の代わりにStreamを渡すこともできます

1
Emaborsa

PDFSharpおよびConcatenateDocuments を使用した例へのリンクを次に示します。

1
northpole

これをPDFBoxで行いました。 iTextSharpと同様に動作すると思います。

0
trendl

pdf-shufflergtk-apps.org を試すことができます

0
medigeek

次のメソッドは、iTextSharpを使用して2つのPDF(f1およびf2)をマージします。 2番目のpdfは、f1の特定のインデックスの後に追加されます。

 string f1 = "D:\\a.pdf";
 string f2 = "D:\\Iso.pdf";
 string outfile = "D:\\c.pdf";
 appendPagesFromPdf(f1, f2, outfile, 3);




  public static void appendPagesFromPdf(String f1,string f2, String destinationFile, int startingindex)
        {
            PdfReader p1 = new PdfReader(f1);
            PdfReader p2 = new PdfReader(f2);
            int l1 = p1.NumberOfPages, l2 = p2.NumberOfPages;


            //Create our destination file
            using (FileStream fs = new FileStream(destinationFile, FileMode.Create, FileAccess.Write, FileShare.None))
            {
                Document doc = new Document();

                PdfWriter w = PdfWriter.GetInstance(doc, fs);
                doc.Open();
                for (int page = 1; page <= startingindex; page++)
                {
                    doc.NewPage();
                    w.DirectContent.AddTemplate(w.GetImportedPage(p1, page), 0, 0);
                    //Used to pull individual pages from our source

                }//  copied pages from first pdf till startingIndex
                for (int i = 1; i <= l2;i++)
                {
                    doc.NewPage();
                    w.DirectContent.AddTemplate(w.GetImportedPage(p2, i), 0, 0);
                }// merges second pdf after startingIndex
                for (int i = startingindex+1; i <= l1;i++)
                {
                    doc.NewPage();
                    w.DirectContent.AddTemplate(w.GetImportedPage(p1, i), 0, 0);
                }// continuing from where we left in pdf1 

                doc.Close();
                p1.Close();
                p2.Close();

            }
        }
0
Viraj Singh

同様の問題を解決するために、次のようなiTextSharpを使用しました。

//Create the document which will contain the combined PDF's
Document document = new Document();

//Create a writer for de document
PdfCopy writer = new PdfCopy(document, new FileStream(OutPutFilePath, FileMode.Create));
if (writer == null)
{
     return;
}

//Open the document
document.Open();

//Get the files you want to combine
string[] filePaths = Directory.GetFiles(DirectoryPathWhereYouHaveYourFiles);
foreach (string filePath in filePaths)
{
     //Read the PDF file
     using (PdfReader reader = new PdfReader(vls_FilePath))
     {
         //Add the file to the combined one
         writer.AddDocument(reader);
     }
}

//Finally close the document and writer
writer.Close();
document.Close();
0
AragornMx

次のメソッドは、PDF List配列であるbyte配列のbyteを取得し、byte配列を返します。

using ...;
using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;

public static class PdfHelper
{
    public static byte[] PdfConcat(List<byte[]> lstPdfBytes)
    {
        byte[] res;

        using (var outPdf = new PdfDocument())
        {
            foreach (var pdf in lstPdfBytes)
            {
                using (var pdfStream = new MemoryStream(pdf))
                using (var pdfDoc = PdfReader.Open(pdfStream, PdfDocumentOpenMode.Import))
                    for (var i = 0; i < pdfDoc.PageCount; i++)
                        outPdf.AddPage(pdfDoc.Pages[i]);
            }

            using (var memoryStreamOut = new MemoryStream())
            {
                outPdf.Save(memoryStreamOut, false);

                res = Stream2Bytes(memoryStreamOut);
            }
        }

        return res;
    }

    public static void DownloadAsPdfFile(string fileName, byte[] content)
    {
        var ms = new MemoryStream(content);

        HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.ContentType = "application/pdf";
        HttpContext.Current.Response.AddHeader("content-disposition", $"attachment;filename={fileName}.pdf");
        HttpContext.Current.Response.Buffer = true;
        ms.WriteTo(HttpContext.Current.Response.OutputStream);
        HttpContext.Current.Response.End();
    }

    private static byte[] Stream2Bytes(Stream input)
    {
        var buffer = new byte[input.Length];
        using (var ms = new MemoryStream())
        {
            int read;
            while ((read = input.Read(buffer, 0, buffer.Length)) > 0)
                ms.Write(buffer, 0, read);

            return ms.ToArray();
        }
    }
}

そのため、PdfHelper.PdfConcatメソッドの結果はPdfHelper.DownloadAsPdfFileメソッドに渡されます。

PS:[PdfSharp][1]という名前のNuGetパッケージをインストールする必要があります。 Package Manage Consoleウィンドウタイプで:

インストールパッケージPdfSharp

0
Siyavash Hamdi

ここで解決策 http://www.wacdesigns.com/2008/10/03/merge-pdf-files-using-c 無料のオープンソースiTextSharpライブラリを使用 http:// sourceforge.net/projects/itextsharp

0
Dmitri Kouminov