Render to PNG or JPEG
Leave feedback
When rendering to PNG/JPG, GroupDocs.Viewer renders each page of the source document as a separate PNG or JPG image.
To render files to PNG/JPG, follow these steps:
- Create an instance of the Viewer class. Specify the source document path as a constructor parameter.
- Instantiate the PngViewOptions or JpgViewOptions object. Specify a path to save the rendered pages.
- Call the View.view() method of the Viewer object. Specify the PngViewOptions or JpgViewOptions object as the parameter.
The following code snippet shows how to render a .docx document to PNG image:
import com.groupdocs.viewer.Viewer;
import com.groupdocs.viewer.options.PngViewOptions;
// ...
try (Viewer viewer = new Viewer("sample.docx")) {
PngViewOptions viewOptions = new PngViewOptions();
viewer.view(viewOptions);
}
The following code snippet shows how to render a .docx document to JPG image:
import com.groupdocs.viewer.Viewer;
import com.groupdocs.viewer.options.JpgViewOptions;
// ...
try (Viewer viewer = new Viewer("sample.docx")) {
JpgViewOptions viewOptions= new JpgViewOptions();
viewer.view(viewOptions);
}
For details, please refer to the following pages:
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.