彩票走势图

Spire.PDF for .NET【页面设置】演示:如何在 C# 中在 PDF 文件中插入空白页

翻译|行业资讯|编辑:胡涛|2024-11-06 11:03:25.490|阅读 9 次

概述:本文将向您展示如何在 C# 中在 PDF 文件中插入空白页。通过使用 Spire.PDF,我们可以将空白页添加到 PDF 文件中您想要的任何位置,例如 PDF 文件的开头、中间或末尾。这非常简单,您只需要三行代码即可完成此任务。

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

Spire.PDF 具有在 C# 中添加、删除空白页的功能。我们已经向您展示了如何删除 PDF 文件中的空白页。本文将向您展示如何在 C# 中在 PDF 文件中插入空白页。通过使用 Spire.PDF,我们可以将空白页添加到 PDF 文件中您想要的任何位置,例如 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下载 

 

确保.NET 的 Spire.PDF已正确安装,然后通过以下路径在下载的 Bin 文件夹中添加 Spire.Pdf.dll 作为引用:“..\Spire.Pdf\Bin\NET4.0\Spire.Pdf.dll”。

以下代码片段向您展示如何在 PDF 文件中插入空白页。我们将向您展示如何将空白页添加到文件末尾并将其作为文件的第二页。

//create a PDF document and load file
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("sample.pdf");

//insert blank page at the end of the PDF file
doc.Pages.Add();

//insert blank page as the second page
doc.Pages.Insert(1);

//Save the document to file
doc.SaveToFile("result.pdf");

查看有效截图如下:

在 PDF 文件末尾添加空白页:

如何在 C# 中在 PDF 文件中插入空白页

将空白页添加为 PDF 文件的第二页:

如何在 C# 中在 PDF 文件中插入空白页

完整代码

using Spire.Pdf;
using System;

namespace InsertPage
{
class Program
{
static void Main(string[] args)
{
//create PdfDocument instance and load file
PdfDocument doc = new PdfDocument();
doc.LoadFromFile("sample.pdf");

//insert blank page as last page
doc.Pages.Add();

doc.SaveToFile("result.pdf");
doc.Close();
System.Diagnostics.Process.Start("result.pdf");

//create PdfDocument instance and load file
PdfDocument doc2 = new PdfDocument();
doc2.LoadFromFile("sample.pdf");

//insert blank page as second page
doc2.Pages.Insert(1);

doc2.SaveToFile("result2.pdf");
doc2.Close();
System.Diagnostics.Process.Start("result2.pdf");
}
}
}

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

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


标签:

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


为你推荐

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


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP