通过扫描创建的 PDF 文档可能会出现页面方向错误的问题(如上下颠倒),这样的情况会给阅读带来极大的不便。旋转 PDF 页面可以使文档页面方向统一,优化阅读体验。本文将介绍如何使用 Spire.PDF for Java 通过程序旋转 PDF 文档中的页面。
安装 Spire.PDF for Java
首先,您需要在 Java 程序中添加 Spire.Pdf.jar 文件作为依赖项。JAR 文件可以从此链接下载。如果您使用 Maven,则可以将以下代码添加到项目的 pom.xml 文件中,从而在应用程序中导入 JAR 文件。
<repositories>
<repository>
<id>com.e-iceblue</id>
<name>e-iceblue</name>
<url>https://repo.e-iceblue.cn/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.pdf</artifactId>
<version>10.9.0</version>
</dependency>
</dependencies>
旋转 PDF 文档中的指定页面
旋转 PDF 页面时,旋转角度以 90 度为增量。可设置的旋转角度为 0、90、180 或 270 度。以下是旋转指定 PDF 页面的详细操作步骤:
- 创建 PdfDocument 的对象。
- 使用 PdfDocument.loadFromFile() 方法载入 PDF 文档。
- 使用 PdfDocument.getPages().get(pageIndex) 方法通过参数获取指定 PDF 页面(初始值为0)。
- 使用 PdfPageBase.getRotation().getValue() 获取页面的原旋转角度。
- 在原旋转角度的基础上增加旋转角度。
- 使用 PdfPageBase.setRotation() 方法将新旋转角度应用到页面。
- 使用 PdfDocument.saveToFile() 方法保存文档。
- Java
import com.spire.pdf.PdfDocument;
import com.spire.pdf.PdfPageBase;
import com.spire.pdf.PdfPageRotateAngle;
public class rotatePDFPage {
public static void main(String []args){
//创建PdfDocument的对象
PdfDocument pdf = new PdfDocument();
//载入PDF文档
pdf.loadFromFile("C:/预算概要.pdf");
//获取文档第二页
PdfPageBase page = pdf.getPages().get(1);
//获取页面的原旋转角度
int rotation = page.getRotation().getValue();
//在原旋转角度的基础上将页面顺时针旋转180度
rotation += PdfPageRotateAngle.Rotate_Angle_180.getValue();
page.setRotation(PdfPageRotateAngle.fromValue(rotation));
//保存文档
pdf.saveToFile("旋转页面.pdf");
}
}
旋转 PDF 文档中的所有页面
以下是旋转 PDF 文档中所有页面的操作步骤:
- 创建 PdfDocument 的对象。
- 使用 PdfDocument.loadFromFile() 方法载入 PDF 文档。
- 循环遍历文档中的页面以旋转每个页面。
- 使用 PdfDocument.getPages().get() 方法获取一个页面。
- 使用 PdfPageBase.getRotation().getValue() 获取页面的原旋转角度。
- 在原旋转角度的基础上增加旋转角度。
- 使用 PdfPageBase.setRotation() 方法将新旋转角度应用到页面。
- 使用 PdfDocument.saveToFile() 方法保存文档。
- Java
import com.spire.pdf.PdfDocument;
import com.spire.pdf.PdfPageBase;
import com.spire.pdf.PdfPageRotateAngle;
public class rotateAllPDFPages {
public static void main(String []args){
//创建PdfDocument的对象
PdfDocument pdf = new PdfDocument();
//载入PDF文档
pdf.loadFromFile("C:/预算概要.pdf");
//循环遍历文档中的页面
for(int i = 0; i < pdf.getPages().getCount(); i++) {
//获取页面
PdfPageBase page = pdf.getPages().get(i);
//获取页面的原旋转角度
int rotation = page.getRotation().getValue();
//在原旋转角度的基础上将页面顺时针旋转180度
rotation += PdfPageRotateAngle.Rotate_Angle_180.getValue();
page.setRotation(PdfPageRotateAngle.fromValue(rotation));
}
//保存文档
pdf.saveToFile("旋转所有页面.pdf");
}
}
申请临时 License
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该Email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用JavaScript。获取有效期 30 天的临时许可证。