C#实现合并及拆分PDF文件的方法
程序员文章站
2023-12-19 21:03:34
有时我们可能会遇到下图这样一种情况 — 我们需要的资料或教程被分成了几部分存放在多个pdf文件中,不管是阅读还是保存都不是很方便,这时我们肯定想要把这些pdf文件合并为一个...
有时我们可能会遇到下图这样一种情况 — 我们需要的资料或教程被分成了几部分存放在多个pdf文件中,不管是阅读还是保存都不是很方便,这时我们肯定想要把这些pdf文件合并为一个pdf文件。相对应的,有时候我们也需要拆分一个大的pdf文件,来从中获取我们需要的那一部分资料。这篇文章主要分享如何使用c#来将多个pdf文件合并为一个pdf文件以及将一个pdf文件拆分为多个pdf文件。
合并pdf文件
合并pdf文件的代码很简单,主要分为三步,首先获取需要合并的pdf文件,然后调用public static pdfdocumentbase mergefiles(string[] inputfiles)方法,将这些pdf文件合并,然后保存文件。
代码如下:
using system; using spire.pdf; namespace 合并pdf文件 { class program { static void main(string[] args) { string[] files = new string[] { "文件1.pdf", "文件2.pdf", "文件3.pdf" }; string outputfile = "输出.pdf"; pdfdocumentbase doc = pdfdocument.mergefiles(files); doc.save(outputfile, fileformat.pdf); system.diagnostics.process.start(outputfile); } } }
合并前:
合并后:
拆分pdf文件
在拆分pdf文件时,我们可以选择将文件的每一页单独拆分为一个pdf文件,还可以设定页码范围,将其拆分为多个pdf文件。下面将分两个部分来介绍。
一、将pdf文件的每一页拆分为一个单独的pdf文件
在上一个部分中,合并后的pdf文件一共有4页,这里我将它的每一页拆分为一个单独的pdf文件。
代码如下:
using system; using spire.pdf; namespace 拆分pdf文件1 { class program { static void main(string[] args) { pdfdocument doc = new pdfdocument("输出.pdf"); string pattern = "拆分-{0}.pdf"; doc.split(pattern); doc.close(); } } }
效果图:
二、根据指定页面范围拆分pdf文件
这里我将一个18页的pdf文件的前10页拆分为一个pdf文件,后8页拆分为另一个pdf文件。
代码如下:
using system.drawing; using spire.pdf; using spire.pdf.graphics; namespace 拆分pdf文件2 { class program { static void main(string[] args) { pdfdocument pdf = new pdfdocument(); pdf.loadfromfile("各种点心的做法.pdf"); pdfdocument pdf1 = new pdfdocument(); pdfpagebase page; for (int i = 0; i < 10; i++) { page = pdf1.pages.add(pdf.pages[i].size, new pdfmargins(0)); pdf.pages[i].createtemplate().draw(page, new pointf(0, 0)); } pdf1.savetofile("doc_1.pdf"); pdfdocument pdf2 = new pdfdocument(); for (int i = 10; i < 18; i++) { page = pdf2.pages.add(pdf.pages[i].size, new pdfmargins(0)); pdf.pages[i].createtemplate().draw(page, new pointf(0, 0)); } pdf2.savetofile("doc_2.pdf"); } } }
拆分前:
拆分后:
note: 这里我使用了一个pdf组件spire.pdf.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。