Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active April 10, 2022 10:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/a193326b0ad309b457e477f0486a5a86 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/a193326b0ad309b457e477f0486a5a86 to your computer and use it in GitHub Desktop.
Change Orientation of Word Document in Java
// How to change page orientation of Word document to Landscape in Java
OrientationOptions orientationOptions = new OrientationOptions(OrientationMode.Landscape, new int[] { 1, 2 });
Merger merger = new Merger("path/document.docx");
merger.changeOrientation(orientationOptions);
merger.save("path/orientation-landscape-document.docx");
// How to change page orientation of Word document to Portrait in Java
OrientationOptions orientationOptions = new OrientationOptions(OrientationMode.Prtrait, new int[] { 3, 4 });
Merger merger = new Merger("path/document.docx");
merger.changeOrientation(orientationOptions);
merger.save("path/orientation-landscape-document.docx");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment