PDF 文档通过页面来呈现文字、图片等元素,一个 PDF 文档通常有多个页面。有时, PDF 文档中会有一些空白的,或全是不必要、无关内容的页面,尤其是在那些从网络获得的 PDF 文档中。我们可以用 Spire.PDF for .NET 来删除这些页面。本文将教大家如何使用 Spire.PDF for .NET 删除PDF页面。
右键单击解决方案中的依赖项,找到“管理NuGet包”,在其中搜索“FreeSpire.PDF”并添加到引用项中。
复制下面代码到控制台安装
PM> Install-Package FreeSpire.PDF
在Free Spire.PDF for .NET官网下载免费版后解压,在解决方案中找到依赖项,右键单击找到添加引用项,找到Spire.PDF.dll并添加到引用项中。
用此工具删除页面非常简单,经过处理甚至可实现快速删除多个文件的多个页面,具体操作步骤如下:
using System; using Spire.Pdf; namespace RemovePage { internal class Program { static void Main(string[] args) { //创建 PdfDocument 的对象 PdfDocument pdf = new PdfDocument(); //从磁盘载入 PDF 文档 string input = @"D:\testp\示例.pdf"; pdf.LoadFromFile(input); //删除第三页和第二页 pdf.Pages.RemoveAt(1); pdf.Pages.RemoveAt(2); //保存文档 string output = "删除页面.pdf"; pdf.SaveToFile(output); } } }
Imports System Imports Spire.Pdf Module Program Sub Main(args As String()) '创建 PdfDocument 的对象 Dim pdf As New PdfDocument() '从磁盘载入 PDF 文档 Dim input As String = "D:\testp\示例.pdf" pdf.LoadFromFile(input) '删除第三段和第二段 pdf.Pages.RemoveAt(2) pdf.Pages.RemoveAt(1) '保存文档 Dim output As String = "删除页面.pdf" pdf.SaveToFile(output) End Sub End Module
以上代码引用均来自免费的Free Spire.PDF for .NET库。