如何在 PDF 文件中添加、复制和删除页面
在 PDF 中添加页面是指在文档中插入新的内容,如文本、图像或现有的 PDF 页面。在 PDF 中复制页面是指在同一文档中复制一个或多个页面,或从一个 PDF 文件复制到另一个 PDF 文件。从 PDF 中删除页面是指从文档中删除不需要的页面。
可以在任何 PDF 文档中添加、复制或删除页面,IronPDF 提供了所有必要的工具,让这一切变得简单快捷。
如何用 C# 添加、复制和删除 PDF 页面
- 下载用于添加、复制和删除 PDF 页面的 C# 库
- 使用
合并
和插入 PDF
方法 - 使用
复制页面
和复制页面s
方法 - 使用
删除页面
和删除页面s
方法 - Save 和 export your PDF
开始在您的项目中使用IronPDF,并立即获取免费试用。
查看 IronPDF 上 Nuget 用于快速安装和部署。它有超过800万次下载,正在使用C#改变PDF。
Install-Package IronPdf
考虑安装 IronPDF DLL 直接。下载并手动安装到您的项目或GAC表单中: IronPdf.zip
手动安装到你的项目中
下载DLL为 PDF 添加页面
只需一行代码就能为 PDF 添加页面。在本例中,生成了一份 PDF 报告,并在报告开头添加了封面页。要合并这两个 PDF 文件,需要使用 Merge
方法。让我们以这两个 PDF 文档为例: coverPage.pdf 和 contentPage.pdf.
:path=/static-assets/pdf/content-code-examples/how-to/add-copy-delete-pages-pdf-add.cs
using IronPdf;
// Import cover page
PdfDocument coverPage = PdfDocument.FromFile("coverPage.pdf");
// Import content document
PdfDocument contentPage = PdfDocument.FromFile("contentPage.pdf");
// Merge the two documents
PdfDocument finalPdf = PdfDocument.Merge(coverPage, contentPage);
finalPdf.SaveAs("pdfWithCover.pdf");
Imports IronPdf
' Import cover page
Private coverPage As PdfDocument = PdfDocument.FromFile("coverPage.pdf")
' Import content document
Private contentPage As PdfDocument = PdfDocument.FromFile("contentPage.pdf")
' Merge the two documents
Private finalPdf As PdfDocument = PdfDocument.Merge(coverPage, contentPage)
finalPdf.SaveAs("pdfWithCover.pdf")
当我们运行上面的代码时,输出的是一个 PDF 文件,封面页在前面:
我们还可以使用 InsertPdf
方法在 PDF 的任意索引处添加页面。在本例中,我通过在 "contentPage.pdf "的开头插入 "coverPage.pdf "实现了上述效果。
:path=/static-assets/pdf/content-code-examples/how-to/add-copy-delete-pages-pdf-insert.cs
using IronPdf;
// Import cover page
PdfDocument coverPage = PdfDocument.FromFile("coverPage.pdf");
// Import content document
PdfDocument contentPage = PdfDocument.FromFile("contentPage.pdf");
// Insert PDF
contentPage.InsertPdf(coverPage, 0);
Imports IronPdf
' Import cover page
Private coverPage As PdfDocument = PdfDocument.FromFile("coverPage.pdf")
' Import content document
Private contentPage As PdfDocument = PdfDocument.FromFile("contentPage.pdf")
' Insert PDF
contentPage.InsertPdf(coverPage, 0)
从 PDF 复制页面
要从 PDF 复制页面,只需调用 CopyPage
或 CopyPages
方法。这些方法分别用于复制单页和多页。这些方法会返回包含指定页面的 PdfDocument 对象。
:path=/static-assets/pdf/content-code-examples/how-to/add-copy-delete-pages-pdf-copy.cs
using IronPdf;
using System.Collections.Generic;
// Copy a single page into a new PDF object
PdfDocument myReport = PdfDocument.FromFile("report_final.pdf");
PdfDocument copyOfPageOne = myReport.CopyPage(0);
// Copy multiple pages into a new PDF object
PdfDocument copyOfFirstThreePages = myReport.CopyPages(new List<int> { 0, 1, 2 });
Imports IronPdf
Imports System.Collections.Generic
' Copy a single page into a new PDF object
Private myReport As PdfDocument = PdfDocument.FromFile("report_final.pdf")
Private copyOfPageOne As PdfDocument = myReport.CopyPage(0)
' Copy multiple pages into a new PDF object
Private copyOfFirstThreePages As PdfDocument = myReport.CopyPages(New List(Of Integer) From {0, 1, 2})
删除 PDF 中的页面
要删除 PDF 中的页面,可以调用 RemovePage
或 RemovePages
方法。这些方法分别用于删除单页和多页副本。
:path=/static-assets/pdf/content-code-examples/how-to/add-copy-delete-pages-pdf-delete.cs
using IronPdf;
using System.Collections.Generic;
PdfDocument pdf = PdfDocument.FromFile("full_report.pdf");
// Remove a single page
pdf.RemovePage(0);
// Remove multiple pages
pdf.RemovePages(new List<int> { 2, 3 });
Imports IronPdf
Imports System.Collections.Generic
Private pdf As PdfDocument = PdfDocument.FromFile("full_report.pdf")
' Remove a single page
pdf.RemovePage(0)
' Remove multiple pages
pdf.RemovePages(New List(Of Integer) From {2, 3})