在 word 文档中,可在页面布局板块中设置页面方向,横向或纵向;也可设置页面大小,包括多种内置的常见页面尺寸,如 a3/a4/a5、各种规格尺寸的信纸、信封等。使用 spire.doc for java 可实现 word 页面的方向设置及大小设置,本文将对此做详细介绍。
安装 spire.doc for java
首先,您需要在 java 程序中添加 spire.doc.jar 文件作为依赖项。jar 文件可以从此链接下载。 如果您使用 maven,则可以将以下代码添加到项目的 pom.xml 文件中,从而在应用程序中导入 jar 文件。
com.e-iceblue
e-iceblue
https://repo.e-iceblue.cn/repository/maven-public/
e-iceblue
spire.doc
11.9.5
设置页面方向及大小
spire.doc for java 提供了 section.getpagesetup().setorientation(pageorientation value) 方法设置页面方向,可支持设置为 pageorientation.landscape 横向、pageorientation.portrait 纵向;通过 section.getpagesetup().setpagesize(dimension2d value) 方法设置页面大小,支持的预设页面大小包括 a3/a4/a5/a6/b4/b5/b6、envelope_dl、executive、flsa、half_letter、ledger、legal、letter_11_×_17、note、quarto、statement、tabloid 等十余种。下面是通过代码设置的步骤:
- 创建 document 类的实例,并通过 document.loadfromfile(string filename) 方法加载 word 文档。
- 通过 document.getsections().get(int index) 方法获取指定节
- 分别通过 section.getpagesetup().setorientation() 方法和 section.getpagesetup().setpagesize() 方法设置页面方向和大小。
- 最后,通过 document.savetofile(string filename, fileformat fileformat) 方法保存 word 文档到指定路径。
- java
import com.spire.doc.*;
import com.spire.doc.documents.pageorientation;
public class pagesize {
public static void main(string[] args){
//加载word文档
document doc = new document();
doc.loadfromfile("input.docx");
//获取第一节
section section = doc.getsections().get(0);
//设置页面大小为a3
section.getpagesetup().setpagesize(com.spire.doc.documents.pagesize.a3);
//设置页面方向为landscape横向
section.getpagesetup().setorientation(pageorientation.landscape);
//section.getpagesetup().setorientation(pageorientation.portrait);//纵向
//保存文档
doc.savetofile("result.docx",fileformat.docx_2013);
doc.dispose();
}
}
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请 该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。 获取有效期 30 天的临时许可证。