您好,登錄后才能下訂單哦!
在前面的文章中,我們已經知道如何合并、拆分多個PDF文件,在這篇文章中的合并、拆分PDF文檔主要是以方便文檔管理的目的來操作文檔,在文檔查閱、管理及存儲上很方便實用。但是我們如果想要合并多個文檔中的部分文檔頁的內容,該如何來做呢?可以參考接下來將要介紹的合并方法。
PS: 本篇文章是對Free Spire.PDF 的合并功能的進一步介紹,即如何合并多個PDF文檔中的指定頁(指定單頁、指定多頁)為一個新文檔
使用工具:Free Spire.PDF for .NET
提示:下載安裝該組件后,注意在項目程序中添加引用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);//指定單頁(文檔1的第1頁)
doc.InsertPageRange(docs[1], 0, 1);//指定多頁 (文檔2的第1頁和第2頁)
//保存并命名合并后的文檔,同時運行文檔
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文檔指定頁”的全部介紹,如果喜歡,歡迎轉載(轉載請注明出處)
感謝閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。