Adjust image quality

GroupDocs.Viewer enables you to adjust quality of output images contained by the source PDF document. To adjust image quality use setImageQuality() option of PdfOptions class (getPdfOptions() of HtmlViewOptions class).

setImageQuality() can be set to:

NOTE: this option is supported when rendering to HTML only.

Following code snippet shows how to adjust image quality when rendering to HTML.

    try (Viewer viewer = new Viewer("sample.docx")) {
        HtmlViewOptions viewOptions = HtmlViewOptions.forEmbeddedResources();
        viewOptions.getPdfOptions().setImageQuality(ImageQuality.MEDIUM);
    
        viewer.view(viewOptions);
    }