在前面的文章中,我们已经知道如何合并、拆分多个PDF文件,在这篇文章中的合并、拆分PDF文档主要是以方便文档管理的目的来操作文档,在文档查阅、管理及存储上很方便实用。但是我们如果想要合并多个文档中的部分文档页的内容,该如何来做呢?可以参考接下来将要介绍的合并方法。
PS: 本篇文章是对Free Spire.PDF 的合并功能的进一步介绍,即如何合并多个PDF文档中的指定页(指定单页、指定多页)为一个新文档,更多关于Free Spire.PDF对PDF文档的操作功能可参阅这里的博客。
提示:下载安装该组件后,注意在项目程序中添加引用Spire.PDF.dll文件
代码细节可参考以下主要代码段:
//初始化数组,数组元素为需要合并的PDF文档 string[] files = { "sample1.pdf", "sample2.pdf" }; PdfDocument[] docs = new PdfDocument[files.Length]; //遍历PDF文档 for (int i = 0; i < files.Length; i++) { docs[i] = new PdfDocument(); docs[i].LoadFromFile(files[i]); } //创建一个新的PDF文档并插入从原文档选取的指定页 PdfDocument doc = new PdfDocument(); doc.InsertPage(docs[0], 0);//指定单页 doc.InsertPageRange(docs[1], 0, 1);//指定多页 //保存并命名合并后的文档,同时运行文档 doc.SaveToFile("Result.pdf"); Process.Start("Result.pdf");
合并前:
合并后:
全部代码
C#
using Spire.Pdf; using System.Diagnostics; namespace MergeSelectedPDFpages { class Program { static void Main(string[] args) { string[] files = { "sample1.pdf", "sample2.pdf" }; PdfDocument[] docs = new PdfDocument[files.Length]; for (int i = 0; i < files.Length; i++) { docs[i] = new PdfDocument(); docs[i].LoadFromFile(files[i]); } PdfDocument doc = new PdfDocument(); doc.InsertPage(docs[0], 0); doc.InsertPageRange(docs[1], 0, 1); doc.SaveToFile("Result.pdf"); Process.Start("Result.pdf"); } } }
VB.NET
Imports Spire.Pdf Imports System.Diagnostics Namespace MergeSelectedPDFpages Class Program Private Shared Sub Main(ByVal args() As String) Dim files() As String = New String() {"sample1.pdf", "sample2.pdf"} Dim docs() As PdfDocument = New PdfDocument((files.Length) - 1) {} Dim i As Integer = 0 Do While (i < files.Length) docs(i) = New PdfDocument docs(i).LoadFromFile(files(i)) i = (i + 1) Loop Dim doc As PdfDocument = New PdfDocument doc.InsertPage(docs(0), 0) doc.InsertPageRange(docs(1), 0, 1) doc.SaveToFile("Result.pdf") Process.Start("Result.pdf") End Sub End Class End Namespace
以上内容是本次关于“如何合并PDF文档指定页”的全部介绍,如果喜欢,欢迎转载(转载请注明出处)
感谢阅读!
原文地址:https://www.cnblogs.com/Yesi/p/8462743.html
时间: 2024-10-30 05:34:17