How can I combine multiple PDFs into one PDF without a 3rd party component?
7 回答
我不认为你可以。开源组件 PDFSharp 具有该功能,以及一个很好的文件组合源代码示例
.NET Framework 不包含修改/创建 PDF 的功能。您需要一个 3rd 方组件来完成您正在寻找的东西。
正如其他人所说,没有内置的东西可以完成这项任务。将iTextSharp与此示例代码一起使用。
AFAIK C# has no built-in support for handling PDF so what you are asking can not be done without using a 3rd party component or a COTS library.
Regarding libraries there is a myriad of possibilities. Just to point a few:
http://csharp-source.net/open-source/pdf-libraries
http://www.codeproject.com/KB/graphics/giospdfnetlibrary.aspx
我不认为 .NET Framework 包含这样的库。我使用 iTextsharp 和 c# 来组合 pdf 文件。我认为 iTextsharp 是最简单的方法。这是我使用的代码。
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;
}
}
尽管已经说过,您不能使用 .NET Framework 的内置库来操作 PDF。不过我可以推荐iTextSharp,它是 Java iText 的 .NET 端口。我玩过它,发现它是一个非常容易使用的工具。
ITextSharp是要走的路