Change page orientation
Leave feedback
GroupDocs.Merger allows to set Portrait or Landscape page orientation for specific or all document pages.
Here are the steps to change page orientation:
- Initialize OrientationOptions class with desired orientation mode and page numbers;
- Instantiate Merger object with source document path or InputStream;
- Call changeOrientation method and pass OrientationOptions object to it;
- Call save method specifying file path to save resultant document.
The following code sample demonstrates how to change page orientation:
with gm.Merger("c:/sample1.docx") as merger:
orientation_mode = gm.domain.options.OrientationMode.LANDSCAPE
orientation_options = gm.domain.options.OrientationOptions(orientation_mode, 1, 2)
merger.change_orientation(orientation_options)
merger.save("c:/merged.docx")
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.