sorry about my English. I have been using TPrintPreview component for years and it is absolutely perfect.
I have small problem with displaying pictures from RTF file.
In RTF file I have 5 pictures. I load RTF file to RichEdit1 and do this:
- Code: Select all
PrintPreview1.ZoomState := zsZoomOther;
PrintPreview1.Zoom := 100;
PrintPreview1.BeginDoc;
PrintPreview1.PaintRichText(PageDialog, RichEdit1, 1, nil);
PrintPreview1.EndDoc;
It works but some pictures (in PrintPreview1) are little bit blurred.
In Attachments there is RTF file and screen, how it looks like.
I understand that if i change Zoom to 99 or 101, that it is blurred, but why if I set 100?
What is wrong?
Thank you.