Hi,

I've use drawstring to draw a string of words onto an image.
However, when you look clearly at the output image below, there are spots around the text string.




i'm using the following to draw the string.

VB Code:
  1. oGraphic.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
  2. oGraphic.DrawString(inputText, objFont, objBrush, objRect, objStringFormat);


Can anyone advise me on how to get rid of the spots around the text ?


Thanks.