I am having issues with a DrawingVisual item I am using to draw text on an image... here is the relevant code I amusing:
DrawingVisual visual = new DrawingVisual();
using (DrawingContext image = visual.RenderOpen())
{
image.DrawText(text, position);
}
The problem I am having is that the text is "blurry". It doesn't look as nice as it should and I'm trying to clean it up. I did find this question that talks about blurry fonts in WPF, but sadly I can't get it working. I have tried adding the following text, but it seems to have had no effect:
TextOptions.SetTextRenderingMode(visual, TextRenderingMode.ClearType);
In fact, changing it to ClearType, GreyScale or Alias seems to make no difference at all on the text. I fear I am using the code incorrectly and I can't seem to find any examples on how to use it as I should.
TextHintingModetoFixed: msdn.microsoft.com/en-us/library/dd772172%28VS.95%29.aspx EDIT: Also, try setting the rendering mode toAliased. I know sometimes the cleartype rendering will default to GreyScale (which is blurry) if the computer OS doesn't support cleartype. In addition, try offsetting your text by0.5pixels. WPF/Silverlight like to sometimes draw lines/text "between" the pixels which just causes it to look blurry. – Chris Sinclair Aug 11 '12 at 15:17TextFormattingModetoDisplaywhich should lock it to whole pixels. – Chris Sinclair Aug 11 '12 at 15:25TextOptions.SetTextHintingMode(visual, TextHintingMode.Fixed); TextOptions.SetTextFormattingMode(visual, TextFormattingMode.Display); TextOptions.SetTextRenderingMode(visual, TextRenderingMode.Aliased);made no difference... which is what I was saying in my opening post. No matter any changes I make to TextOptions on DrawingVisual, none of my DrawText gets changed. – Jason Axelrod Aug 11 '12 at 15:57