1
Printed Image Issue
Problem reported by Richard Watts - 12/14/2022 at 2:29 PM
Resolved
Hello,

We have noticed that when using the documentultimage viewer to print an image, the quality of the printed image is not as good as one where the image is downloaded then printed.  This occurs even when selecting 'High Quality'.  Is this a known issue, or is there anything that can be done to improve the printing within the viewer?

Thank you!

1 Reply

Reply to Thread
0
Cem Alacayir Replied
Employee Post Marked As Resolution
Did you try increasing value of DocumentViewerPrintOptions.HighQualityLevel property? The default level is 100% but you can increase it to 150% or 200%:
var documentViewer = new DocumentViewer
{
    PrintOptions = new DocumentViewerPrintOptions
    {
        HighQualityLevel = 150
    }
};
or:
documentViewer.PrintOptions.HighQualityLevel = 150;

Reply to Thread