需要使用另一个PDF文件作为背景水印从C#创建PDF文件

时间:2010-11-19 15:57:58

标签: c# pdf merge

我正在寻找一种解决方案,允许我从C#创建一个PDF文件,该文件也合并为一个单独的静态PDF文件作为背景水印。

我正在开发一个系统,允许用户创建其发票的PDF版本。我没有尝试重新创建C#中的所有发票功能,而是认为最简单的解决方案是使用空白发票的PDF版本(从Adobe Illustrator创建)作为背景水印,并简单地将动态发票详细信息覆盖在顶部。

我正在查看数据动态的Active Reports,但看起来他们没有能力将报表叠加或合并到现有的PDF文件中。

是否还有其他具有此功能的.NET PDF报告产品?

3 个答案:

答案 0 :(得分:13)

谢谢bhavinp。 iText似乎正如我所希望的那样完成诀窍和工作。

对于其他试图合并为PDF文件并覆盖它们的人,基于使用iTextPDF库的以下示例代码可能有所帮助。

结果文件是原始文件和背景文件的组合

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using iTextSharp.text;
using iTextSharp.text.pdf;


namespace iTextTest
{
    class Program
    {
                        /** The original PDF file. */
        const String Original = @"C:\Jobs\InvoiceSource.pdf";
        const String Background = @"C:\Jobs\InvoiceTemplate.pdf";
        const String Result = @"C:\Jobs\InvoiceOutput.pdf";

        static void Main(string[] args)
        {
            ManipulatePdf(Original, Background, Result);
        }

        static void ManipulatePdf(String src, String stationery, String dest)
        {
            // Create readers
            PdfReader reader = new PdfReader(src);
            PdfReader sReader = new PdfReader(stationery);
            // Create the stamper
            PdfStamper stamper = new PdfStamper(reader, new FileStream(dest, FileMode.Create));
            // Add the stationery to each page
            PdfImportedPage page = stamper.GetImportedPage(sReader, 1);
            int n = reader.NumberOfPages;
            PdfContentByte background;
            for (int i = 1; i <= n; i++)
            {
                background = stamper.GetUnderContent(i);
                background.AddTemplate(page, 0, 0);
            }
            // CLose the stamper
            stamper.Close();
        }


    }
}

答案 1 :(得分:3)

我遇到了这个问题,由于免费版本的许可证,无法使用iTextSharp库

  

iText AGPL许可证适用于希望与开源社区分享其整个应用程序源代码的开发人员,这些开源社区是AGPL“copyleft”条款下的免费软件。

但是我发现使用以下代码可以使用PDFSharp。

using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PdfSharp.Drawing;
using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;

namespace PDFTest
{
    class Program
    {
        static Stream Main(string[] args)
        {
            using (PdfDocument originalDocument= PdfReader.Open("C:\\MainDocument.pdf", PdfDocumentOpenMode.Import))
            using (PdfDocument outputPdf = new PdfDocument())
            {
                foreach (PdfPage page in originalDocument.Pages)
                {
                    outputPdf.AddPage(page);
                }
                var background = XImage.FromFile("C:\\Watermark.pdf");
                foreach (PdfPage page in outputPdf.Pages)
                {
                    XGraphics graphics = XGraphics.FromPdfPage(page);
                    graphics.DrawImage(background, 1, 1);

                }
                MemoryStream stream = new MemoryStream();
                outputPdf.Save("C:\\OutputFile.pdf");
            }
        }
    }
}

答案 2 :(得分:2)

使用它。 http://itextpdf.com/ 它适用于Java和.NET