Text blurry when printed but ok in pdf

Hello,

I generate documents to print from the solution. (We are not in the latest version).

When type a document and then printing it, I realize that the text "bleeds". It's thick. On the other hand, if I download it as a PDF and then print it, the text is rendered cleanly.

What can I do so that when printing the document directly the text is clean?

Thank you for your feedback


// code to print (javascipt)

let editorContainer = document.getElementById("editor_container");

let editor = editorContainer.ej2_instances[0];

let documentEditor = editor.documentEditor;


documentEditor.print();


1 Reply

DS Dhanush Sekar Syncfusion Team January 22, 2025 06:21 AM UTC

Hi Flavie,


To increase the print quality in the Document Editor, you can use the printDevicePixelRatio setting in the DocumentEditorSettings. This setting allows you to specify the device pixel ratio for the image generated during printing, which can enhance the resolution and quality of the printed document. Here is an example of how to configure this setting:

@Html.EJS().DocumentEditorContainer("container").EnableToolbar(true).DocumentEditorSettings("settings").Render() <script> var settings = { printDevicePixelRatio :2 }; </script>


In this code snippet, the printDevicePixelRatio is set to 2, which is higher than the default value of 1. This increases the resolution of the printed image, thereby improving the print quality. Adjust the printDevicePixelRatio value based on your specific quality requirements.

Documentation: Print in ASP.NET MVC Document Editor Control | Syncfusion


Regards,

Dhanush Sekar


Loader.
Up arrow icon