Home > Software design >  Crystal Report showing Poor quality Text Preview
Crystal Report showing Poor quality Text Preview

Time:06-26

I am using Crystal report v13.0.4000.0 in my windows forms application in VS2019.

My Problem: Crystal report preview shows Pixelated poor-quality text at runtime. I'm wondering is it just like that OR is there any workaround for that. I have seen SSRS and RDLC they show crystal clear text in the preview at runtime. Here are images for comparison:

Picture 1 : Preview at runtime enter image description here

Picture 2 : Preview when viewing Crystal report viewer in VS2019 ! enter image description here

Both images are from the same VS2019 Project. If anybody knows about this or even has an idea please share your thoughts.

Note : Output printer report is fine and clear the problem is with the preview only why cant i get picture 2nd image quality in the preview.

CodePudding user response:

Crystal renders content to the screen based on the capabilities of the default (or specified printer). So Make sure the default/specified printer is capable, and that the printer driver is patched/recent.

CodePudding user response:

Please clarify: are these truly text or are they images you are displaying inside Crystal? If they are images, test the effect of setting the viewer's property of InterpolationMode to Drawing2D.InterpolationMode.HighQualityBicubic

  • Related