I am doing my own Captcha checkout on my website. Everything works, except that I need a blurry / effect on my text that is not visible by a web browser, etc.
Some of the code used to generate text on the image:
Bitmap BitMap = new Bitmap(@"C:\Users\Public\Pictures\Sample Pictures\Desert.jpg");
Graphics g = Graphics.FromImage(BitMap);
g.DrawString(""+RandomNumberString+"", new Font("Tahoma", 40), Brushes.Khaki, new PointF(1, 1));
pictureBox1.Image = BitMap;
Example:

What can I do to get my effects / blur in my text?
Thank!
source
share