Spire.PDF for .NET【文档操作】演示:将PDF拆分为多个PDF文件

Spire.PDF for .NET 是一款独立 PDF 控件,用于 .NET 程序中创建、编辑和操作 PDF 文档。使用 Spire.PDF 类库,开发人员可以新建一个 PDF 文档或者对现有的 PDF 文档进行处理,且无需安装 Adobe Acrobat。

E-iceblue功能类库Spire 系列文档处理组件均由中国本土团队研发,不依赖第三方软件,不受其他国家的技术或法律法规限制,同时适配国产操作系统如中科方德、中标麒麟等,兼容国产文档处理软件 WPS(如 .wps/.et/.dps 等格式**(qun:767755948)**

Spire.PDF for.net下载 Spire.PDF for java下载

安装适用于 .NET 的 Spire.PDF

首先,您需要将 Spire.PDF for .NET 包中包含的 DLL 文件添加为 .NET 项目中的引用。DLL 文件可以从此链接下载或通过NuGet安装。

复制代码
PM> Install-Package Spire.PDF
使用 C#、VB.NET 将 PDF 拆分为一页 PDF

Spire.PDF提供Split()方法将多页PDF文档分割成多个单页文件。以下是详细步骤。

  • 创建一个PdfDcoument对象。
  • 使用PdfDocument.LoadFromFile()方法加载 PDF 文档。
  • 使用PdfDocument.Split(string destFilePattern, int startNumber)方法将文档拆分为一页 PDF 。

[C#]

复制代码
using System;
using Spire.Pdf;

namespace SplitPDFIntoIndividualPages
{
class Program
{
static void Main(string[] args)
{
//Specify the input file path
String inputFile = "C:\\Users\\Administrator\\Desktop\\Terms of Service.pdf";

//Specify the output directory
String outputDirectory = "C:\\Users\\Administrator\\Desktop\\Output\\";

//Create a PdfDocument object
PdfDocument doc = new PdfDocument();

//Load a PDF file
doc.LoadFromFile(inputFile);

//Split the PDF to one-page PDFs
doc.Split(outputDirectory + "output-{0}.pdf", 1);
}
}
}

VB.NET

复制代码
Imports System
Imports Spire.Pdf

Namespace SplitPDFIntoIndividualPages
Class Program
Shared Sub Main(ByVal args() As String)
'Specify the path of the input file
Dim inputFile As String = "C:\\Users\\Administrator\\Desktop\\Terms of Service.pdf"

'Specify the output directory
Dim outputDirectory As String = "C:\\Users\\Administrator\\Desktop\\Output\\"

'Create a PdfDocument object
Dim doc As PdfDocument = New PdfDocument()

'Load a PDF file
doc.LoadFromFile(inputFile)

'Split the PDF to one-page PDFs
doc.Split(outputDirectory + "output-{0}.pdf", 1)
End Sub
End Class
End Namespace
在 C#、VB.NET 中按页面范围拆分 PDF

没有提供按页面范围拆分 PDF 文档的直接方法。为此,我们创建两个或多个新的 PDF 文档,并将源文档中的页面或页面范围导入到其中。以下是详细步骤。

  • 初始化PdfDocument对象时加载源 PDF 文件。
  • 创建两个额外的PdfDocument对象。
  • **使用PdfDocument.InsertPage()**方法将第一页从源文件导入到第一个文档。
  • **使用PdfDocument.InsertPageRange()**方法将剩余页面从源文件导入到第二个文档。
  • **使用PdfDocument.SaveToFile()**方法将两个文档保存为单独的 PDF 文件。

[C#]

复制代码
using Spire.Pdf;
using System;

namespace SplitPdfByPageRanges
{
class Program
{
static void Main(string[] args)
{
//Specify the input file path
String inputFile = "C:\\Users\\Administrator\\Desktop\\Terms of Service.pdf";

//Specify the output directory
String outputDirectory = "C:\\Users\\Administrator\\Desktop\\Output\\";

//Load the source PDF file while initialing the PdfDocument object
PdfDocument sourceDoc = new PdfDocument(inputFile);

//Create two additional PdfDocument objects
PdfDocument newDoc_1 = new PdfDocument();
PdfDocument newDoc_2 = new PdfDocument();

//Insert the first page of source file to the first document
newDoc_1.InsertPage(sourceDoc, 0);

//Insert the rest pages of source file to the second document
newDoc_2.InsertPageRange(sourceDoc, 1, sourceDoc.Pages.Count - 1);

//Save the two documents as PDF files
newDoc_1.SaveToFile(outputDirectory + "output-1.pdf");
newDoc_2.SaveToFile(outputDirectory + "output-2.pdf");
}
}
}

VB.NET

复制代码
Imports Spire.Pdf
Imports System

Namespace SplitPdfByPageRanges
Class Program
Shared Sub Main(ByVal args() As String)
'Specify the input file path
Dim inputFile As String = "C:\\Users\\Administrator\\Desktop\\Terms of Service.pdf"

'Specify the output directory
Dim outputDirectory As String = "C:\\Users\\Administrator\\Desktop\\Output\\"

'Load the source PDF file while initialing the PdfDocument object
Dim sourceDoc As PdfDocument = New PdfDocument(inputFile)

'Create two additional PdfDocument objects
Dim NewDoc_1 As PdfDocument = New PdfDocument()
Dim NewDoc_2 As PdfDocument = New PdfDocument()

'Insert the first page of source file to the first document
NewDoc_1.InsertPage(sourceDoc, 0)

'Insert the rest pages of source file to the second document
NewDoc_2.InsertPageRange(sourceDoc, 1, sourceDoc.Pages.Count - 1)

'Save the two documents as PDF files
NewDoc_1.SaveToFile(outputDirectory + "output-1.pdf")
NewDoc_2.SaveToFile(outputDirectory + "output-2.pdf")
End Sub
End Class
End Namespace

以上便是如何将PDF拆分为多个PDF文件,如果您有其他问题也可以继续浏览本系列文章,获取相关教程~

相关推荐
《源码好优多》11 分钟前
基于Java Springboot旅游信息推荐系统
java·spring boot·旅游
岁月无声code13 分钟前
Spring Boot 牛刀小试 org.springframework.boot:spring-boot-maven-plugin:找不到类错误
java·spring boot·github
不爱学习的YY酱25 分钟前
【计网不挂科】计算机网络第二章< 物理层 >习题库(含答案)
java·数据库·计算机网络
南城花随雪。44 分钟前
Spring框架之装饰者模式 (Decorator Pattern)
java·开发语言·装饰器模式
编程、小哥哥1 小时前
设计模式之装饰器模式(SSO单点登录功能扩展,增加拦截用户访问方法范围场景)
java·设计模式·装饰器模式
hummhumm2 小时前
第 12 章 - Go语言 方法
java·开发语言·javascript·后端·python·sql·golang
hummhumm2 小时前
第 8 章 - Go语言 数组与切片
java·开发语言·javascript·python·sql·golang·database
尼克_张2 小时前
tomcat配合geoserver安装及使用
java·tomcat
.5482 小时前
提取双栏pdf的文字时 输出文件顺序混乱
前端·pdf
wywcool2 小时前
JVM学习之路(5)垃圾回收
java·jvm·后端·学习