1

複数の PDF ドキュメントをマージし、テキストを含むページを追加する必要があるという要件があります。たとえば、1 つの PDF からページをコピーした後、テキストを含むページを追加する必要があり、次に 2 番目の PDF からページをコピーする必要があり、再びテキストを含むページを追加する必要があります...

PDFをマージしようとしましたが、各PDFドキュメントの後にテキストを追加したいPDFをマージするだけです。

私はiTextSharpを使いたいです。以下はコード スニペットです。

// ステップ 1: ドキュメント オブジェクトの作成 Document document = new Document();

        // step 2: we create a writer that listens to the document
        PdfCopy writer = new PdfCopy(document, new FileStream(outFile, FileMode.Create));
        if (writer == null)
        {
            return;
        }

        // step 3: we open the document
        document.Open();

        foreach (string fileName in fileNames)
        {
            // we create a reader for a certain document
            PdfReader reader = new PdfReader(fileName);
            reader.ConsolidateNamedDestinations();

            // step 4: we add content
            for (int i = 1; i <= reader.NumberOfPages; i++)
            {
                PdfImportedPage page = writer.GetImportedPage(reader, i);
                writer.AddPage(page);
            }


            //This commented part is not working
            ////Add a new page to the pdf file
            //document.NewPage();

            //Paragraph paragraph = new Paragraph();
            //Font titleFont = new Font(iTextSharp.text.Font.FontFamily.HELVETICA
            //                          , 15
            //                          , iTextSharp.text.Font.BOLD
            //                          , BaseColor.BLACK
            //    );
            //Chunk titleChunk = new Chunk("Comments", titleFont);
            //paragraph.Add(titleChunk);
            //writer.Add(paragraph);

            //paragraph = new Paragraph();
            //Font textFont = new Font(iTextSharp.text.Font.FontFamily.HELVETICA
            //                         , 12
            //                         , iTextSharp.text.Font.NORMAL
            //                         , BaseColor.BLACK
            //    );
            //Chunk textChunk = new Chunk("Hello", textFont);
            //paragraph.Add(textChunk);
            //writer.Add(paragraph);
            //document.Add(paragraph);

            reader.Close();

        }

        // step 5: we close the document and writer
        writer.Close();
        document.Close();

前もって感謝します。

4

1 に答える 1

0

document.newPage()との併用はできませんPdfCopy。その場で作成されたコンテンツを含む余分なページを挿入する場合は、メモリ内に新しいドキュメントを作成する必要があります:物理ファイルではなくメモリ内に PDF を作成

たとえば、次のメソッドを作成できます。

private byte[] CreatePdf(String comments)
{
    Document doc = new Document(PageSize.LETTER);
    using (MemoryStream output = new MemoryStream())
    {
        PdfWriter wri = PdfWriter.GetInstance(doc, output);
        doc.Open();
        Paragraph header = new Paragraph("Comments");
        doc.Add(header);
        Paragraph paragraph = new Paragraph(comments);
        doc.Add(paragraph);
        doc.Close();
        return output.ToArray();
    }
}

コードでは、次のようにそのメソッドを使用できます。

writer.AddDocument(new PdfReader(CreatePdf("Test comment")););

ページをループする必要はないことに注意してください。あなたが持っている:

for (int i = 1; i <= reader.NumberOfPages; i++)
{
     PdfImportedPage page = writer.GetImportedPage(reader, i);
     writer.AddPage(page);
}

以下を使用できます。

writer.AddDocument(reader);
于 2016-12-06T09:35:57.933 に答える