PDFBox - 删除页面
现在让我们学习如何从 PDF 文档中删除页面。
从现有文档中删除页面
您可以使用PDDocument类的removePage()方法从现有的 PDF 文档中删除页面。
步骤 1:加载现有 PDF 文档
使用PDDocument类的静态方法load()加载现有 PDF 文档。此方法接受文件对象作为参数,由于这是一个静态方法,您可以使用类名调用它,如下所示。
File file = new File("path of the document") PDDocument.load(file);
步骤 2:列出页面数量
您可以使用getNumberOfPages()方法列出 PDF 文档中存在的页面数量,如下所示。
int noOfPages= document.getNumberOfPages(); System.out.print(noOfPages);
步骤 3:删除页面
您可以使用PDDocument类的removePage()方法从 PDF 文档中删除页面。对于此方法,您需要传递要删除的页面的索引。
在指定 PDF 文档中页面的索引时,请记住这些页面的索引从零开始,即,如果您想删除第 1 页,则索引值需要为 0。
document.removePage(2);
步骤 4:保存文档
删除页面后,使用PDDocument类的save()方法保存 PDF 文档,如下面的代码块所示。
document.save("Path");
步骤 5:关闭文档
最后,使用PDDocument类的close()方法关闭文档,如下所示。
document.close();
示例
假设我们有一个名为sample.pdf的 PDF 文档,它包含三个空页面,如下所示。
此示例演示如何从现有 PDF 文档中删除页面。在这里,我们将加载上面指定的名为sample.pdf的 PDF 文档,从中删除一个页面,并将其保存到C:/PdfBox_Examples/路径中。将此代码保存在名为Removing_pages.java的文件中。
import java.io.File; import java.io.IOException; import org.apache.pdfbox.pdmodel.PDDocument; public class RemovingPages { public static void main(String args[]) throws IOException { //Loading an existing document File file = new File("C:/PdfBox_Examples/sample.pdf"); PDDocument document = PDDocument.load(file); //Listing the number of existing pages int noOfPages= document.getNumberOfPages(); System.out.print(noOfPages); //Removing the pages document.removePage(2); System.out.println("page removed"); //Saving the document document.save("C:/PdfBox_Examples/sample.pdf"); //Closing the document document.close(); } }
使用以下命令从命令提示符编译并执行保存的 Java 文件。
javac RemovingPages.java java RemovingPages
执行后,上述程序创建一个包含空白页面的 PDF 文档,显示以下消息。
3 page removed
如果您验证指定的路径,您会发现所需的页面已被删除,并且文档中只剩下两页,如下所示。
广告