4dots Software
CODE HELP BLOG
using (Graphics g = Graphics.FromImage(bmp))
{
g.Clear(Color.LightGray);
g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;
g.DrawString("hello world", this.Font, Brushes.Black, 50f, 50f);
}