将两个PDF文档合并为一个
本文关键字:一个 合并 两个 PDF 文档 | 更新日期: 2023-09-27 18:21:23
我可以在asp.net中合并两个或多个PDF吗?我知道我可以使用interop处理Word和Excel文件。但是我可以合并PDF吗?
请提出任何建议或链接。
尝试iTextSharp:
iTextSharp是iText的C#端口,是PDF生成和操作。它可以用来创建PDF文档,以便将XML转换为PDF(使用额外的XFAWorker DLL),填写交互式PDF表单,标记新内容在现有PDF文档上,拆分和合并现有PDF文档,等等。
这是一篇关于如何做到这一点的文章。
using System.Text.RegularExpressions;
using iTextSharp.text.pdf;
using iTextSharp.text.pdf.parser;
using iTextSharp.text;
//Call this method in main with parameter
public static void MergePages(string outputPdfPath, string[] lstFiles)
{
PdfReader reader = null;
Document sourceDocument = null;
PdfCopy pdfCopyProvider = null;
PdfImportedPage importedPage;
sourceDocument = new Document();
pdfCopyProvider = new PdfCopy(sourceDocument,
new System.IO.FileStream(outputPdfPath, System.IO.FileMode.Create));
sourceDocument.Open();
try
{
for (int f = 0; f < lstFiles.Length - 1; f++)
{
int pages = 1;
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();
}
sourceDocument.Close();
}
catch (Exception ex)
{
throw ex;
}
}