Set image resolution
Leave feedback
On this page
If the output PDF file contains images, you can reduce its resolution.
To allow changing the image resolution, set the setCompressImages() and setResizeImages() setters to true
in the PdfOptimizationOptions. The GroupDocs.Viewer compresses all images in the file. The setMaxResolution() property determines the maximum resolution.
The following code snippet shows how to reduce image resolution in the file:
try (Viewer viewer = new Viewer("sample.docx")) {
PdfViewOptions viewOptions = new PdfViewOptions();
PdfOptimizationOptions optimizationOptions = new PdfOptimizationOptions();
optimizationOptions.setCompressImages(true);
optimizationOptions.setImageQuality(50);
optimizationOptions.setResizeImages(true);
optimizationOptions.setMaxResolution(100);
viewOptions.setPdfOptimizationOptions(optimizationOptions);
viewer.view(viewOptions);
}
The following image demonstrates the result:
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.