彩票走势图

Spire.PDF for .NET【页面设置】演示:从 PDF 中删除页面

翻译|行业资讯|编辑:胡涛|2024-10-15 14:11:28.413|阅读 6 次

概述:本文将演示如何使用Spire.PDF for .NET以编程方式从现有 PDF 文档中删除/移除页面,欢迎查阅~

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

PDF 文档可以包含多个页面,这些页面具有不同的文本内容、图像或其他对象。有时,用户可能需要删除某些页面,这些页面包含不正确绘制的对象或与文档主题无关的页面。本文将演示如何使用Spire.PDF for .NET以编程方式从现有 PDF 文档中删除/移除页面。

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

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

Spire.PDF for.net下载 

安装 Spire.PDF for .NET

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

PM> Install-Package Spire.PDF
从 PDF 中删除页面
  • 创建一个PdfDocument对象。
  • 使用PdfDocument.LoadFromFile()方法加载示例 PDF 文档。
  • 使用PdfDocument.Pages属性获取 PDF 文档中的页面。
  • 使用PdfPageCollection.RemoveAt(int index)方法通过索引删除指定的页面。
  • 使用PdfDocument.SaveToFile()方法将文档保存到另一个文件。

【C# 】

using Spire.Pdf;

namespace RemovePage
{
class Program
{
static void Main(string[] args)
{
//Create a PdfDocument object
PdfDocument document = new PdfDocument();

//Load a sample PDF document
document.LoadFromFile(@"E:\Files\input.pdf");

//Remove the second page
document.Pages.RemoveAt(1);

//Save the result document
document.SaveToFile("RemovePDFPage.pdf");
}
}
}

【VB.NET 】


Imports Spire.Pdf

Namespace RemovePage
Class Program
Private Shared Sub Main(ByVal args As String())

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

'Load a sample PDF document
document.LoadFromFile("E:\Files\input.pdf")

'Remove the second page
document.Pages.RemoveAt(1)

'Save the result document
document.SaveToFile("RemovePDFPage.pdf")
End Sub
End Class
End Namespace


C#/VB.NET:从 PDF 中删除页面


欢迎下载|体验更多E-iceblue产品

获取更多信息请咨询  ;技术交流Q群(767755948)


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP