Spire.PDF for .NET【页面设置】演示:获取 PDF 文件中的页数
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 等格式
确保.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 文件末尾添加空白页:
将空白页添加为 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"); } } }